How do I plot a symbolic function of one variable for a specific set of argument values?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Walter Roberson
am 30 Mai 2021
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 Kommentare
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!