回答済み set x-axis intervals as cubic of X
x = 0:9 ; y = 2+3.*x; figure; plot(x,y);
xt = get(gca, 'XTick ');
xtlc = sprintfc('%.1f', xt.^3 );
set(gca, 'XTick', xt, 'XTi...
6年弱 前 | 0
質問
set x-axis intervals as cubic of X
hello,
I am really sorry to bother you all with this question, I know that there is a solution somewhere in a forum (yesterday ...
6年弱 前 | 1 件の回答 | 0
1
回答
質問
Cartesian product of list
Hello,
I have 4 vectors A, B, C, D with
A=1:6; B=1:5; C=1:10; D=1:4; % in real case, the max values i.e 6, 5, 10 and 4, are ...