plotting the output of an integral

조회 수: 3 (최근 30일)
R yan
R yan 2015년 7월 1일
답변: RahulTandon 2015년 7월 8일
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일
It works, but you will have to refine the plot for yourself.

댓글을 달려면 로그인하십시오.

답변 (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]);

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by