How do I plot a symbolic function of one variable for a specific set of argument values?
조회 수: 2 (최근 30일)
이전 댓글 표시
Say, I have a symbolic function y(x). There is no support for plotting it when x=logspace(1, 5, 101) in fplot(). How do I do it nicely?
댓글 수: 0
답변 (1개)
Walter Roberson
2021년 5월 30일
syms y(x)
y(x) = cos(x) * exp(-x/10)
fplot(y, [10 100])
title('fplot')
X = logspace(1, 2, 101);
Y = double(subs(y, x, X));
plot(X, Y)
title('subs')
댓글 수: 3
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!