Ploting graph on matlab

3 ビュー (過去 30 日間)
cikalekli
cikalekli 2021 年 5 月 18 日
編集済み: cikalekli 2021 年 5 月 19 日
Hi I just want to plot this equation on matlab and plot the graph for finding the type of its graph too.
here is my code but it didn't work well:
clc, close all
t = 0:1:100000;
ic = -30000*t.*exp(-5000*t) + 6*exp(-5000*t);
figure(1);clf;
plot(t, ic);
xlabel('\bf\it Time ', 'fontsize', (25)),
ylabel('\bf\it Amplitude', 'fontsize', (25)),

採用された回答

Star Strider
Star Strider 2021 年 5 月 18 日
The function declines very rapidly, so use a different value for ‘t’
% t = 0:1:100000;
t = linspace(0, 2E-3, 500);
ic = -30000*t.*exp(-5000*t) + 6*exp(-5000*t);
figure(1)%;clf;
plot(t, ic);
xlabel('\bf\it Time ', 'fontsize', (25)),
ylabel('\bf\it Amplitude', 'fontsize', (25)),
Also, the clf call immediately clears ‘figure(1)’ after creating it. The plot call regenerates it so nothing is actually lost, however it is inefficient to create it, clear it, then create it again.
  4 件のコメント
cikalekli
cikalekli 2021 年 5 月 18 日
編集済み: cikalekli 2021 年 5 月 18 日
You clearly demonstrated and answered perfectly all of my questions and I purely understood what you meant.
Yeah, now I've just seen that the curve has been set with 0 to 2ms I got it when you wrote this.
Please take care of yourself and I will continue working on my matlab skills after that :)
Thank you ^_^
Star Strider
Star Strider 2021 年 5 月 18 日
Thank you!
As always, my pleasure! Please take good care of yourself as well!
You appear to be learning MATLAB quickly!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by