フィルターのクリア

How to plot this equation?

2 ビュー (過去 30 日間)
Manav Divekar
Manav Divekar 2022 年 4 月 11 日
回答済み: Voss 2022 年 4 月 11 日
L = 10
u = (10^-3)*x -966.667(x^2-2*L*x)
and
u = (10^-3)*x - 0.6768(x^2-2*L*x) +0.3773(x^3-3*L^2*x)
together?

採用された回答

Voss
Voss 2022 年 4 月 11 日
Here's how you might calculate and plot some similar curves. You can take the syntax and apply it to yours.
L = 10;
x = -1000:0.01:1000;
u = (10^-3)*x - 1800*(x.^2-3*L*x);
plot(x,u)
hold on
u = (10^-3)*x - 2*(x.^2-4*L*x) + 6.6*(x.^3-2*L^2*x) ;
plot(x,u);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by