plotting the output of an integral
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
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]);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Assumptions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!