List of commits:
Subject Hash Author Date (UTC)
Correct help message for permute_data.m ac030677d3f8f7c0951f42b4dc4a1370399127d1 Jason Hoelscher-Obermaier 2016-10-24 09:56:32
Improve plotCorrelationMatrix.m eca579f58fa38bdc5fa3f81bda84976d4cd46acc Jason Hoelscher-Obermaier 2016-10-21 09:11:47
Add sanity_check-scripts due to Tobias Wenzl 9d02f936ea3ffed8fe13039087934c3326c33350 Jason Hoelscher-Obermaier 2016-09-30 12:10:45
Add peak_identification function due to Tobias Wenzl c8a4a8d38e8a909a5688e8ed5d3a88712f571dfa Jason Hoelscher-Obermaier 2016-09-30 12:07:52
Also export calibrated CMs, log.negativity and physicality from ev-object if they exist c063641e12dc805b62f5ef8bf49a5311dc803770 Jason Hoelscher-Obermaier 2016-09-22 12:53:49
Add method plotLogneg to entanglement_evaluation-class e7443b5adbcf6a9ef4a4dc95c5e27160e5c2f704 Jason Hoelscher-Obermaier 2016-09-22 12:23:44
Add darknoise-subtraction-method to entanglement_evaluation be1fc701bd39f6a0892383f9446daf408e6f7394 Jason Hoelscher-Obermaier 2016-09-22 09:30:49
Adapt test to check for result of CM-calibration procedure in entanglement_evaluation_test... e1b9ab299b267f97a7fdd24f4e1cce6abe942185 Jason Hoelscher-Obermaier 2016-09-20 16:15:52
Change quad.order to q1,p1,q2,p2,..,x1,y1,x2,y2,... everywhere for consistency 997cd1260b8b222bd0b6ebf3f8567db04ace24fd Jason Hoelscher-Obermaier 2016-09-20 10:30:19
Check that mode order is q1, p1, q2, p2, .... in calibrate_cm_test.m f5619421e505f4305e7ee12a173c5d85aef70196 Jason Hoelscher-Obermaier 2016-09-20 10:26:34
Add help to permute_data.m 22f7ede0384bfcb1f0a86556340e9e022586a508 Jason Hoelscher-Obermaier 2016-09-20 10:25:35
Fix ineffective test on entanglement_evaluation objects which are handles d5d85b7f9a1a7abd7384983b9d49bfb217d598aa Jason Hoelscher-Obermaier 2016-09-19 17:22:06
Allow to specify the traces to use for shotnoise-calibration by hand fdec708fa527788bc7c86a57462fddf3bd8678bc Jason Hoelscher-Obermaier 2016-09-15 10:24:00
Add dummy-mode to PXItrace: creates mock file for testing instead of an actual data file 14e29d60337a57ab13b3e950182520442c06a57e Jason Hoelscher-Obermaier 2016-09-15 10:05:23
Correct documentation in parseVararginForMissingFields.m 9e8a954bda526bb307d930cf07aaf9928eb19365 Jason Hoelscher-Obermaier 2016-09-14 17:10:28
Modify TestRunDisplay to suppress annoying html-output when running tests from command line 828228430097491d6fc591177699038ad02ab35d Jason Hoelscher-Obermaier 2016-09-14 17:10:08
Turn software_version into hidden, dependent property 4c6d3523d2abe43b7b17bfba303b16a57f679169 Jason Hoelscher-Obermaier 2016-09-14 13:22:17
Add import_traces-functionality to entanglement_evaluation 35d6b299912f30fb11cdc15d9b9299d9f556b5d0 Jason Hoelscher-Obermaier 2016-09-14 12:01:12
Speed up entanglement_evaluation_test 2a113d1fab8b9473cf2b9c939ea1c474ac43763e Jason Hoelscher-Obermaier 2016-09-14 09:14:56
cleaned up /model directory: moved all files (*model*) to toolbox 'optomechanics' ddf5a93a3e61b5e05714f92c5f21b63538235474 Witlef Wieczorek 2016-09-07 11:55:18
Commit ac030677d3f8f7c0951f42b4dc4a1370399127d1 - Correct help message for permute_data.m
Author: Jason Hoelscher-Obermaier
Author date (UTC): 2016-10-24 09:56
Committer name: Jason Hoelscher-Obermaier
Committer date (UTC): 2016-10-24 09:56
Parent(s): eca579f58fa38bdc5fa3f81bda84976d4cd46acc
Signer:
Signing key:
Signing status: N
Tree: 452cc04434d2175d88a6c5fb2eaff8772d848b86
File Lines added Lines deleted
data_analysis/auxfunctions/permute_data.m 3 2
File data_analysis/auxfunctions/permute_data.m changed (mode: 100644) (index 8bca5f8..27b5818)
1 1 function data_permuted = permute_data(data_original, varargin) function data_permuted = permute_data(data_original, varargin)
2 2 % permute_data takes traces with quadratures ordered as 'q1', 'q2',... 'p1', % permute_data takes traces with quadratures ordered as 'q1', 'q2',... 'p1',
3 % 'p2',... 'x1', 'x2',... 'y1', 'y2' and returns the covariance matrix
3 % 'p2',... 'x1', 'x2',... 'y1', 'y2' and returns the the same traces
4 4 % reordered with quadratures ordered as 'q1', 'p1', 'q2', % reordered with quadratures ordered as 'q1', 'p1', 'q2',
5 5 %'p2',... 'x1', 'y1', 'x2', 'y2',... %'p2',... 'x1', 'y1', 'x2', 'y2',...
6 6 % %
7 7 % permute_data(traces, 'inverse', true) performs the inverse reordering. % permute_data(traces, 'inverse', true) performs the inverse reordering.
8
8 9 inverse = false; inverse = false;
9 10 for k=1:2:length(varargin) for k=1:2:length(varargin)
10 11 switch varargin{k} switch varargin{k}
11 case 'inverse'
12 case {'inverse', 'Inverse'}
12 13 inverse = varargin{k+1}; inverse = varargin{k+1};
13 14 otherwise otherwise
14 15 error(['Unrecognized varargin-argument ', varargin{k}]); error(['Unrecognized varargin-argument ', varargin{k}]);
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