How to plot a function like this in matlab

exp(-ax+bx^2) where x ranges from 5-250 in order of 1.

 채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 23일

0 개 추천

x = 5 : 250;
y = exp(-a*x + b*x.^2);
plot(x, y)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

제품

태그

Community Treasure Hunt

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

Start Hunting!

Translated by