Plot graph didnt showing up
显示 更早的评论
clear
load 'strain_constant_t2 (15000 data).dat' %t2_data,dat is the data file in the ASCII format
strain_constant_t2
pause
%time series parameters
x=strain_constant_t2;
N=15000; %sampling points at 15000
fs=500; %sampling frequency at 500hz
T=1/fs;
ts=N/fs;
t=ts/N:ts/N:ts;
plot(t,x);
ylabel('Amplitude [microstrain]');
xlabel('Time [seconds]');
this code didnt show any error. somehow it still not showing up the plot graph after i run it.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
