With the script shown below,
figure()
for CH = 2:33
Y = (avg(:,CH) - avgBG(CH) + SP);
hold on
plot(avg(:,1), Y)
xlim([0 0.3]); xlabel('Time (s)');
ylim([-0.034 0.034]); ylabel('Position (m)');
SP = SP + 2/1000;
end
I've created this figure:
I want to change the Y-axis values on the figure to be multiplied by 1000.
I tried Yticks, but I don't think I've implemented it correctly. Any suggestions?
0 Comments
Sign in to comment.