フィルターのクリア

How to plot this equation y=exp(-(K-1))

1 回表示 (過去 30 日間)
lakom Mariem
lakom Mariem 2017 年 7 月 15 日
回答済み: Akira Agata 2017 年 7 月 16 日
I want to plot the equation y=exp(-(K-1)) in matlab..can anyone help me please

採用された回答

Akira Agata
Akira Agata 2017 年 7 月 16 日
Or, simply plot your function, like:
K = linspace(0,10,100);
y = exp(-(K-1));
plot(K,y);

その他の回答 (1 件)

James Tursa
James Tursa 2017 年 7 月 15 日

カテゴリ

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