Answered Select Points on Plot (Code Included)
I was actually playing with this today (because I am that much of a dork). There might be a way around |ginput|, but I wonder i...
Answered plotting: x-axis datenum to datestr
datetick('x','dd/mmm/yy')
Or whatever format you want in the second argument (leave it off & MATLAB will pick one for you)
15 years ago | 0
Answered Select Points on Plot (Code Included)
Maybe I'm misunderstanding the interaction process, but it seems like you enter the loop, then (probably) get to the |ginput| li...
15 years ago | 0
Answered array assignment question
So, this is what you want?
a = zeros(4, 5);
b = ones(2, 4);
[rows columns] = size(b);
% Define upper left of where...
Answered Statistic analysis on cell arrays
I think this is what you're looking for:
A = nominal([ones(42,1);2*ones(25,1);3*ones(32,1);...
ones(37,1);2*ones(23,1);...