plotting the output of an integral
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Antworten (1)
RahulTandon
am 8 Jul. 2015
%% 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]);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Assumptions 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!