List of commits:
Subject Hash Author Date (UTC)
Clean up gaussianity_plots.m 282624b1635f855e0ff583be3804d70811310f33 Jason Hoelscher-Obermaier 2016-12-21 13:52:06
Add kernel density estimation to gaussianity_plots.m 82c61b14b9d5dc3a3a10c28851c53f89fa6f50f3 Jason Hoelscher-Obermaier 2016-12-21 11:11:25
Add gaussianity_plots.m for quick inspection of gaussianity for multimode data ac4b043b056c04053da74a4d33ba4e2db88b7ef1 Jason Hoelscher-Obermaier 2016-12-21 11:04:43
Remove superfluous folder altmany-export_fig-... and embed export_fig-gitrepo f9171ef1b54324c77f70bac4b99f0d9294833155 Jason Hoelscher-Obermaier 2016-12-14 15:01:56
Add some options (export_suffix, min, max) to plot_logneg_gammalist..fcts. 765932bc7e5a8cfbbf06685a170e365984cd444f Jason Hoelscher-Obermaier 2016-11-24 15:50:39
Some layout improvements in plot_logneg_gammalist_split.m 102cbf1d4cf4fb01e1df3cb1aeac0b52e6b19f41 Jason Hoelscher-Obermaier 2016-11-21 13:13:49
Add function plot_logneg_gammalist_split.m to plot logneg vs gamma1 for all gamma2s and vice versa f6d8a069952d77183e789d8c7073652ea59efdea Jason Hoelscher-Obermaier 2016-11-21 12:23:25
Increase color resolution and allow inverting the color map 84805db2f236d56bb5e9329e843f3825dea15161 Jason Hoelscher-Obermaier 2016-11-18 10:27:41
Add option for divergent map with different max and min values to plot_logneg_gammalist.m a794f5945796a341666da4c731d48c16c0fa4f52 Jason Hoelscher-Obermaier 2016-11-18 10:03:00
Add option to not export plots in run_entanglement_evaluation_simulation.m 655670f569737920243a0c6b0d71fe49b86e1e72 Jason Hoelscher-Obermaier 2016-11-16 11:32:22
Improve display of estimated_time_of_arrival.m 78f43d39aa80353028b1751f9da4bd01084cf65d Jason Hoelscher-Obermaier 2016-11-16 08:20:27
Export data before plotting in run_entanglement_evaluation_simulation.m 164493ffb587aa054fca93b5ecafbf4f12196d80 Jason Hoelscher-Obermaier 2016-11-15 08:56:58
Add option 'short' to pseudo_hash.m 9dcf4aea299ae45b6dc56fd2cce997b12f5066a7 Jason Hoelscher-Obermaier 2016-11-11 13:29:30
Improve plot_logneg_gammalist.m 3ab5ad6902c486fdca3ff218490f5e1fc83acfd3 Jason Hoelscher-Obermaier 2016-11-11 12:47:46
Add support for independently varied pulse_widths to run_entanglement_evaluation_simulation 607af2145b571e62bd06b6236da00a1355226611 Jason Hoelscher-Obermaier 2016-11-11 12:47:32
Rename howto_evaluation (for automatic syntax highlighting) 3a08b09bc22bd96757bab679c116644bcaec3602 Jason Hoelscher-Obermaier 2016-11-11 12:24:23
Improve plotLogneg.m: additional optional arguments 114d832af1e70500af3f905ac6cdf08deed754b3 Jason Hoelscher-Obermaier 2016-11-10 15:37:56
Fix bug due to relative path names in run_entanglement_evaluation_simulation.m 01adcc653d8f7a95e6648fb1eacb297aa9643a1a Jason Hoelscher-Obermaier 2016-11-07 17:45:42
Save evaluation-object to ev.mat in method exportResults.m 3542d5ce7be5718da52ac3f8e164b2e2e85c2b34 Jason Hoelscher-Obermaier 2016-11-07 17:39:21
Turn potentially memory-expensive properties into transient properties 1aed22e1658fa5b8ea1ea9c4bca76abd879d1d60 Jason Hoelscher-Obermaier 2016-11-07 17:09:32
Commit 282624b1635f855e0ff583be3804d70811310f33 - Clean up gaussianity_plots.m
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2016-12-21 13:52
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2016-12-21 13:52
Parent(s): 82c61b14b9d5dc3a3a10c28851c53f89fa6f50f3
Signer:
Signing key:
Signing status: N
Tree: ed70c70d333a4d5b65aae31f294ab7a74e4b88d4
File Lines added Lines deleted
data_analysis/gaussianity/gaussianity_plots.m 1 8
File data_analysis/gaussianity/gaussianity_plots.m changed (mode: 100644) (index d77c664..7e875b6)
... ... function gaussianity_plots(trace, varargin)
2 2 quadno = size(trace,2); quadno = size(trace,2);
3 3 modeno = quadno/4; modeno = quadno/4;
4 4 assert((modeno==round(modeno))&&(modeno>0)); assert((modeno==round(modeno))&&(modeno>0));
5 pulseno = size(trace,1);
6 5
7 6 modes = 1:modeno; modes = 1:modeno;
8 7 subplotwidth = min(2,modeno); subplotwidth = min(2,modeno);
 
... ... function gaussianity_plots(trace, varargin)
79 78 end end
80 79
81 80 if export if export
82 % cdffig, qqfig work, histfig does not
83 % % hist-problem can be reproduced as follows:
84 % % hist(randn(10))
85 % % export_fig('test','-pdf','-nocrop','-transparent')
86 % % note: barh also fails
87 % % barh(randn(5))
88 % % export_fig('test','-pdf','-nocrop')
81 % note: hist does not work with pdf export.
89 82 export_fig(histfig, [exportstr, '_', 'hist'],... export_fig(histfig, [exportstr, '_', 'hist'],...
90 83 '-png', '-nocrop','-transparent') '-png', '-nocrop','-transparent')
91 84 export_fig(cdffig, [exportstr, '_', 'cdf'],... export_fig(cdffig, [exportstr, '_', 'cdf'],...
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