List of commits:
Subject Hash Author Date (UTC)
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
Circumvent matlab-bug cutting of contour when used with log-scale axes 1a1576df5b2b3e9354e460c96bb00523ae4580dc Jason Hoelscher-Obermaier 2017-03-30 09:10:35
Improve contour-plot-method 0067b9840fb91bd62f485071f38ab0d91c3e8fd6 Jason Hoelscher-Obermaier 2017-03-30 08:45:45
Add method 'trace_out' to meta_ev: returns a meta-object where all evaluations have been traced out f98e8666abc7a85cec77ed076ee6f72fa250f623 Jason Hoelscher-Obermaier 2017-03-30 07:44:42
Add methods for quick export of all figs to meta_ev.m eba909118fe050479c8ff32e3c889f88c95c5837 Jason Hoelscher-Obermaier 2017-03-30 07:36:39
Add reset method to clear previous postprocessing results in meta_ev e299ba7be1625c170da5e1428537228df6c99cf2 Jason Hoelscher-Obermaier 2017-03-30 07:01:19
Add property common_path (deepest directory which is a parentdir to all the evaluations) in meta_ev.m 307d34599088d874a1f1b9ff1e9ea817cbe0bd2c Jason Hoelscher-Obermaier 2017-03-29 10:32:58
Commit 97a0aea577a1ce963e01957b16cc689d25f2a7a8 - Bug fix in sentence_case: return empty string if input is empty string
- plus: finer contour levels for plots of logneg with low dynamic range
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2017-04-05 16:22
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2017-04-05 16:22
Parent(s): c7bba217a63b61e05366c6b7e4ff5891f46e98c1
Signer:
Signing key:
Signing status: N
Tree: 6286860a2e0fcce18a38cf8d2e686bcf3b91e4a3
File Lines added Lines deleted
data_analysis/@meta_ev/meta_ev.m 3 1
misc/plottools/sentence_case.m 6 1
File data_analysis/@meta_ev/meta_ev.m changed (mode: 100644) (index 5f54f48..a7f08b4)
... ... classdef meta_ev < class_conveniences
145 145 c_levels = [[-abs_max:0.5:0],[0.1:0.1:abs_max]]; c_levels = [[-abs_max:0.5:0],[0.1:0.1:abs_max]];
146 146 elseif abs_max > 1 elseif abs_max > 1
147 147 c_levels = [[-abs_max:0.1:0],[0.1:0.1:abs_max]]; c_levels = [[-abs_max:0.1:0],[0.1:0.1:abs_max]];
148 else
148 elseif abs_max > 0.5
149 149 c_levels = [-abs_max:0.1:abs_max]; c_levels = [-abs_max:0.1:abs_max];
150 else
151 c_levels = [-abs_max:0.05:abs_max];
150 152 end end
151 153 cmap = flipud(cbrewer('div','RdBu',512)); cmap = flipud(cbrewer('div','RdBu',512));
152 154 case {'pulsewidth', 'opt_pulse_gamma', 'opt_pulsewidth'} case {'pulsewidth', 'opt_pulse_gamma', 'opt_pulsewidth'}
File misc/plottools/sentence_case.m changed (mode: 100644) (index a5b89d0..d18342a)
1 1 function Sentence_string = sentence_case(string) function Sentence_string = sentence_case(string)
2 2 % Capitalizes first word of the input string % Capitalizes first word of the input string
3 Sentence_string = [upper(string(1)), string(2:end)];
3 assert(ischar(string), 'Expected string.')
4 if length(string)>0
5 Sentence_string = [upper(string(1)), string(2:end)];
6 else
7 Sentence_string = '';
8 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