List of commits:
Subject Hash Author Date (UTC)
Fix num2eng.m: correct display of 0 (w. tolerance of +-eps) and +-inf. 6345574b61460fec8dd19832056d6273a07f23e9 Jason Hoelscher-Obermaier 2017-04-10 10:44:17
Add class homotrace_simulated as wrapper around homotrace if simulation-data-streams are to be used... b09e4d8431e7784d3021ae949edd557291c8d482 Jason Hoelscher-Obermaier 2017-04-06 14:56:34
Replace unnecessary switch-expression in assert_consistency_of_varargin by isequal-test 0c946942de73edb17b0d1f7b62748b9c8f0a98d0 Jason Hoelscher-Obermaier 2017-04-06 14:27:26
Improve default color order for line plots 336545a7441b6b575ab47ef655377514207cd69b Jason Hoelscher-Obermaier 2017-04-07 21:40:27
Add method "plot_cuts" to meta_ev... d92ade078a2b85f08312fe9524d9dc2097c6aff6 Jason Hoelscher-Obermaier 2017-04-07 20:57:41
Add method filter_params to meta_ev.m a9b063dc0c5858ba211dafe6c78cbe49bf5063d5 Jason Hoelscher-Obermaier 2017-04-07 18:03:54
Replace unnecessary switch-expression in assert_consistency_of_varargin by isequal-test 6cb69108ba70daabd0a01aa61d4f5c9de25cb57a Jason Hoelscher-Obermaier 2017-04-06 14:27:26
Update submodule matlab-xunit to point to master (after updates to displayStack were merged). 086e1d0869d17ea2dfffa706717bbbceb981ab72 Jason Hoelscher-Obermaier 2017-04-06 08:41:39
Bug fix in sentence_case: return empty string if input is empty string 97a0aea577a1ce963e01957b16cc689d25f2a7a8 Jason Hoelscher-Obermaier 2017-04-05 16:22:00
Add some tests to the import functionality of meta_ev c7bba217a63b61e05366c6b7e4ff5891f46e98c1 Jason Hoelscher-Obermaier 2017-04-05 15:57:24
Track fork of matlab-xunit https://github.com/jas-ho/matlab-xunit e2f562df1335935665e575cf6f16bf66def70800 Jason Hoelscher-Obermaier 2017-04-05 08:21:40
Remove submodule matlab_xunit tracking https://github.com/psexton/matlab-xunit 8b06720c836ce14b37470912c5c80c46396f47b1 Jason Hoelscher-Obermaier 2017-04-05 08:08:35
Add option to set order of traces in show_plot.m b0bd094a15506450b85b9bb1e84ea0c898792a92 Jason Hoelscher-Obermaier 2017-04-04 14:53:37
Extend functionality of isafile.m: When called with several strings returns true if all of them are files 40c41991e46ce281edaca0f839f4fd91a6bccacf Jason Hoelscher-Obermaier 2017-04-04 11:36:53
Update module matlab_xunit. 4efe1d940832b017396e09ffdf265c3a4b0c65a7 Jason Hoelscher-Obermaier 2017-04-04 09:26:35
Improve plot-functions in meta_ev by allowing for a default title to be added 3ad8428d800e277d3f2be870dc4e5aab84330dbf Jason Hoelscher-Obermaier 2017-03-31 15:07:45
Add property models and method load_models for storing and loading simulation models in meta_ev.m 2f6d550076544fc277b8c9036d04137341b1f192 Jason Hoelscher-Obermaier 2017-03-31 14:59:36
Add property fig_label to speficy name of exported plots in more reasonably way f11f02cea87070ebc853f8a0730fa1aa53519bbe Jason Hoelscher-Obermaier 2017-03-31 10:04:46
Add method to restrict allowed pulse_gammas to meta_ev.m f14d76691d474e65e0b3edc26b620e89d06ce930 Jason Hoelscher-Obermaier 2017-03-30 14:41:47
Improve layout of opt_pulse_gammas-plots in meta_ev.m 06a41054cf2748331ca7fd7b09003eab37db5db0 Jason Hoelscher-Obermaier 2017-03-30 13:29:09
Commit 6345574b61460fec8dd19832056d6273a07f23e9 - Fix num2eng.m: correct display of 0 (w. tolerance of +-eps) and +-inf.
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2017-04-10 10:44
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2017-04-10 10:44
Parent(s): a371a47a2473bf2b3d5eee0876f007407e22a321
Signer:
Signing key:
Signing status: N
Tree: 694c0b43206e5e5547c982b2496b8736b8b79ea5
File Lines added Lines deleted
misc/3rdparty/num2eng.m 18 9
File misc/3rdparty/num2eng.m changed (mode: 100644) (index 5e5f4f3..1b8aae6)
... ... function str=num2eng(num);
13 13 % Copyright (c) by Federico Forte % Copyright (c) by Federico Forte
14 14 % Date: 2006/10/20 % Date: 2006/10/20
15 15
16 suffix_str='yzafpnum kMGTPEZY';
17 k=1;
18 while abs(num)>=10^(3*(k-8)) && k<=16,
19 k=k+1;
20 end
21 if k~=9,
22 suff=suffix_str(k);
16 if abs(num)<=eps
17 str = '0';
18 elseif isequal(num,inf)
19 str = 'inf';
20 elseif isequal(num,-inf)
21 str = '-inf';
23 22 else else
24 suff='';
23 suffix_str='yzafpnum kMGTPEZY';
24 k=1;
25 while abs(num)>=10^(3*(k-8)) && k<=16,
26 k=k+1;
27 end
28 if k~=9,
29 suff=suffix_str(k);
30 else
31 suff='';
32 end
33
34 str=[num2str(num/10^(3*(k-9))),suff];
25 35 end end
26 str=[num2str(num/10^(3*(k-9))),suff];
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/gutc61/Membrane

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/gutc61/Membrane

Clone this repository using git:
git clone git://git.rocketgit.com/user/gutc61/Membrane

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main