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.

채택된 답변

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by