フィルターのクリア

how to convert time unit in graphic

1 回表示 (過去 30 日間)
Kesni savitri
Kesni savitri 2013 年 5 月 20 日
i have a trouble to make my task,
i use gui matlab to show a graph.
the graph i build from the calculated differential equation use ode45 with step size 1 hour.
there is 1 until 2160 hour. and i want to show the graph time unit in 'days' without change the step size of my ode45, so how can i do?

採用された回答

Walter Roberson
Walter Roberson 2013 年 5 月 20 日
For example,
plot(t(:,1), y(:,1))
curtick = get(gca, 'xtick');
newlab = cellstr( num2str( curtick(:) ./ 24 ) );
set(gca, 'xticklabel', newlab)
  2 件のコメント
Kesni savitri
Kesni savitri 2013 年 5 月 20 日
thanks for you answer, but i have 8 differensial equation, so i write...
plot(t(:,1), y(:,1),y(:,2),y(:,3),y(:,4),y(:,5),y(:,6),y(:,7),y(:,8))
curtick = get(gca, 'xtick');
newlab = cellstr( num2str( curtick(:) ./ 24 ) );
set(gca, 'xticklabel', newlab)
and was error to show the graph.
??? Error using ==> plot
Data must be a single matrix Y or a list of pairs X,Y
Error in ==> ruunmodel at 5
plot(t(:,1), y(:,1),y(:,2),y(:,3),y(:,4),y(:,5),y(:,6),y(:,7),y(:,8))
??? Error using ==> plot
Data must be a single matrix Y or a list of pairs X,Y
Error in ==> ruunmodel at 5
plot(t(:,1), y(:,1),y(:,2),y(:,3),y(:,4),y(:,5),y(:,6),y(:,7),y(:,8))
Walter Roberson
Walter Roberson 2013 年 5 月 20 日
plot(t(:,1), y)
When you specify multiple numeric vector arguments for plot() you need to use the pattern x1 y1 x2 y2 x3 y3 ... Alternately you can use a common x, and specify the y as a matrix where the columns of y form the different lines. Your y(:,1), y(:,2) etc. are already columns in the "y" matrix, so you can give it as a single argument to draw all 8 of the columns.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by