List of commits:
Subject Hash Author Date (UTC)
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
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
Plottools: Wrap builtin figure to set default font and font size and provide custom labels command 0e8f3be4d9c92e31db9941fa411d83c1ca095878 Jason Hoelscher-Obermaier 2017-03-30 13:14:11
Add method for plotting optimal pulse width 2675f16902f57c8a862ab2f6f5b51798763edbae Jason Hoelscher-Obermaier 2017-03-30 12:32:31
Commit b09e4d8431e7784d3021ae949edd557291c8d482 - Add class homotrace_simulated as wrapper around homotrace if simulation-data-streams are to be used...
... instead of files
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2017-04-06 14:56
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2017-04-07 21:43
Parent(s): 0c946942de73edb17b0d1f7b62748b9c8f0a98d0
Signer:
Signing key:
Signing status: N
Tree: 76683a24c43b010eb99c8e3cce3cb13cebb381a7
File Lines added Lines deleted
PXItraces/@PXItrace/PXItrace.m 9 3
File PXItraces/@PXItrace/PXItrace.m changed (mode: 100644) (index f35202d..20f3618)
... ... classdef PXItrace < class_conveniences
32 32 pseudohash % quick pseudohash computed with pseudo_hash pseudohash % quick pseudohash computed with pseudo_hash
33 33 chunk_index % for long measurements where traces are split into several chunks chunk_index % for long measurements where traces are split into several chunks
34 34 dummy = false; % dummy = true creates a short dummy file with random numbers to play around with dummy = false; % dummy = true creates a short dummy file with random numbers to play around with
35 stream = false % stream = true <==> PXItrace does not rely on existing file but on a stream
36 % as created e.g. by simulation_data_stream.m
35 37 end end
36 38 properties(Dependent) properties(Dependent)
37 39 directory directory
 
... ... classdef PXItrace < class_conveniences
62 64 fid = fopen(filepath, 'w'); fid = fopen(filepath, 'w');
63 65 fwrite(fid, randn(1e6,1)); fwrite(fid, randn(1e6,1));
64 66 fclose(fid); fclose(fid);
67 elseif obj.stream
68 obj.filepath = '';
69 obj.precision = 'double';
70 else
71 assert(isafile(filepath),...
72 [filepath, ' does not seem to point to a file']);
73 obj.pseudohash = pseudo_hash(filepath);
65 74 end end
66 assert(isafile(filepath),...
67 [filepath, ' does not seem to point to a file']);
68 obj.pseudohash = pseudo_hash(filepath);
69 75 end end
70 76
71 77 %destructor %destructor
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