2
votes
What are your favourite MATLAB/Octave programming tricks?
Using ismember() to merge data organized by text identfiers. Useful when you are analyzing differing periods when entries, in my case company symbols, come and go.
%Merge B into A b …
1
vote
What are your favourite MATLAB/Octave programming tricks?
Oh, and reverse an array
v = 1:10;
v_reverse = v(length(v):-1:1);
…
0
votes
Reading text values into matlab variables from ASCII files
Just use textscan with different format specifiers.
fid = fopen(filename,'r');
heading = textscan(fid,'%s %s %s',1);
fgetl(fid); %advance the file pointer one line
data = textscan(f …
