필터 지우기
필터 지우기

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 CenterFile Exchange에서 2-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