List of commits:
Subject Hash Author Date (UTC)
Turn off warning regarding default_sample_no in PXItrace 0c6322c334c051e08198ba79ca85170ebd5e8e12 Jason Hoelscher-Obermaier 2017-04-10 11:04:03
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
Commit 0c6322c334c051e08198ba79ca85170ebd5e8e12 - Turn off warning regarding default_sample_no in PXItrace
- with the warning on, output becomes very noisy for homotrace_simulated-objects
- reason: these objects rely on default_sample_no for setting their sample_no
(since they have no file associated and therefore intrinsically no sample_no)
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2017-04-10 11:04
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2017-04-10 11:04
Parent(s): 6345574b61460fec8dd19832056d6273a07f23e9
Signer:
Signing key:
Signing status: N
Tree: 4c1087471b7dae7ac43957c672e22ac984058a32
File Lines added Lines deleted
PXItraces/@PXItrace/PXItrace.m 1 1
File PXItraces/@PXItrace/PXItrace.m changed (mode: 100644) (index 20f3618..3fb2f14)
... ... classdef PXItrace < class_conveniences
108 108 warning(warn_id,... warning(warn_id,...
109 109 ['Could not determine sample_no.\n',10,... ['Could not determine sample_no.\n',10,...
110 110 'Falling back to a value of ', num2eng(obj.default_sample_no), 'Samples.']); 'Falling back to a value of ', num2eng(obj.default_sample_no), 'Samples.']);
111 % warning('off',warn_id)
111 warning('off',warn_id)
112 112 end end
113 113 sample_no = obj.default_sample_no; sample_no = obj.default_sample_no;
114 114 end end
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