フィルターのクリア

Plot the functions x(t), vx(t) and ax(t) in same graph and check qualitatively the mathematical relationship between three functions

2 ビュー (過去 30 日間)
Ls
Ls 2021 年 8 月 14 日
コメント済み: DGM 2021 年 8 月 14 日
I have the values of x(t), vx(t), ax(t)

回答 (1 件)

DGM
DGM 2021 年 8 月 14 日
t = linspace(0,1,100);
x = -t.^2;
v = -2*t;
a = -2*t.^0;
h = plot(t,x,'b',t,v,'r',t,a,'m');
legend(h,{'x','v','a'})
  3 件のコメント
Walter Roberson
Walter Roberson 2021 年 8 月 14 日
"qualitatively" means that you describe the relationship. It is not a mathematical measure. Mathematical measures are "quantitative" not "qualitative"
DGM
DGM 2021 年 8 月 14 日
I don't know if the assignment actually is asking for a written answer, but I'll assume it does. If it doesn't, just think about it like this.
What is the conceptual significance of the data in these vectors; in other words, what does it represent? What visually discernable qualities do you expect the plots to reveal? Do the plots look like you expect? Describe why they do or don't.
Think about:
physical relationships -> calculus concepts -> polynomial orders -> basic shape

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

カテゴリ

Help Center および File ExchangePhysics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by