plotting the output of an integral
显示 更早的评论
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 个评论
RahulTandon
2015-7-8
It works, but you will have to refine the plot for yourself.
回答(1 个)
RahulTandon
2015-7-8
0 个投票
%% 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]);
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!