How to plot a function like this in matlab

3 ビュー (過去 30 日間)
maharaj
maharaj 2013 年 2 月 23 日
exp(-ax+bx^2) where x ranges from 5-250 in order of 1.
  1 件のコメント
Walter Roberson
Walter Roberson 2013 年 2 月 23 日
What are "a" and "b" ?

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

採用された回答

Walter Roberson
Walter Roberson 2013 年 2 月 23 日
x = 5 : 250;
y = exp(-a*x + b*x.^2);
plot(x, y)

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by