How do I plot an equation?
조회 수: 1 (최근 30일)
이전 댓글 표시
How would I be able to plot the following equation into matlab : y=e^(-x/0.005)?
댓글 수: 0
답변 (1개)
Voss
2022년 4월 30일
One way:
x = -0.02:0.0001:0.02;
y = exp(-x/0.005);
plot(x,y)
Another way:
y = @(x)exp(-x/0.005);
fplot(y,[-0.02 0.02])
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!