Is there a semilogx function for symbolic functions?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Like there is fplot for plot, is there a function that replaces semilogx, semilogy, loglog for symbolic functions, because semilogx, semilogy, and loglog aren't working for my symbolic functions.
Please share, thank you.
0 commentaires
Réponses (1)
Star Strider
le 13 Avr 2018
Use the set function with fplot to adjust the axis scaling:
syms x(t)
x(t) = exp(-2*t);
figure(1)
fplot(x, [0 10])
title('Linear x')
figure(2)
fplot(x, [0 10])
set(gca, 'YScale','log')
title('Semilogy x')
1 commentaire
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!