plotting the output of an integral
Afficher commentaires plus anciens
syms x; syms t; int(1./((1-t.*x).^3),t,0,1)
ans =
How can I plot the output? I tried ezplot, but doesn't work.
thanks
1 commentaire
RahulTandon
le 8 Juil 2015
It works, but you will have to refine the plot for yourself.
Réponses (1)
RahulTandon
le 8 Juil 2015
0 votes
%% Start; I rephrased your problem, as below clc; syms x t y clear; y = int(1/((1-t*x)^3),t); ezplot(y,[0,1]);
Catégories
En savoir plus sur Calculus dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!