How to change xlabel on contour
15 ビュー (過去 30 日間)
古いコメントを表示
Hi guys
so i have a plot contour from matrix. the x axis of the contour is time sample. i want to change it to second. how to do it?
im using this code but didnt work
dt=1/fs
ts=0:dt:(length(data)*dt)-dt;
contour(wt,ts);
0 件のコメント
回答 (1 件)
Santanu Roy
2020 年 12 月 3 日
dt=1/fs
ts=0:dt:(length(data)*dt)-dt;
contour(wt,ts);
Just add this line after the plot line.
xlabel("second");
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!