Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to plot this function in matlab?

조회 수: 5 (최근 30일)
Ahmad
Ahmad 2016년 5월 28일
마감: MATLAB Answer Bot 2021년 8월 20일
x=e^((y-b)/a)

답변 (2개)

John D'Errico
John D'Errico 2016년 5월 28일
편집: John D'Errico 2016년 5월 28일
help exp
help ezplot
Subtract x. Don't have the equality in there. ezplot will assume the result is implicitly equal to zero, but if you put in an equality symbol, it will get confused.
Of course, if b and a are not known, then how do you expect any plot? So, supply some values for b and a FIRST.
Or, just take the log, then solving for y.

John BG
John BG 2017년 3월 13일
Hi Ahmad
with new fplot is even easier
a=1,b=2;fplot(@(x) exp((x-b)/a))
if you find this answer useful would you please be so kind to mark my answer as Accepted Answer?
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John BG

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by