How do I plot a symbolic function of one variable for a specific set of argument values?

3 次查看(过去 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?

回答(1 个)

Walter Roberson
Walter Roberson 2021-5-30
syms y(x)
y(x) = cos(x) * exp(-x/10)
y(x) = 
fplot(y, [10 100])
title('fplot')
X = logspace(1, 2, 101);
Y = double(subs(y, x, X));
plot(X, Y)
title('subs')
  3 个评论
Valeri Aronov
Valeri Aronov 2021-6-3
I have unaccepted the almost good given answer after a closer examination. I am sorry about being too quick. The purpose of using logspace for x was to spread its values in such a way that they are equidistant on the plot. They are not in the given solution.

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by