plotting the output of an integral

2 次查看(过去 30 天)
R yan
R yan 2015-7-1
syms x; syms t; int(1./((1-t.*x).^3),t,0,1)
ans =
piecewise([x = 1, Inf], [not 1/x in (0, 1) and x href = ""</a> 1, -(x/2 - 1)/(x - 1)^2])
How can I plot the output? I tried ezplot, but doesn't work.
thanks

回答(1 个)

RahulTandon
RahulTandon 2015-7-8
%% 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]);

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by