How do I plot an equation?
1 回表示 (過去 30 日間)
古いコメントを表示
How would I be able to plot the following equation into matlab : y=e^(-x/0.005)?
0 件のコメント
回答 (1 件)
Voss
2022 年 4 月 30 日
One way:
x = -0.02:0.0001:0.02;
y = exp(-x/0.005);
plot(x,y)
Another way:
y = @(x)exp(-x/0.005);
fplot(y,[-0.02 0.02])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!