How to plot time against a function with 2 variables
조회 수: 4 (최근 30일)
이전 댓글 표시
1 syms f(x,t) n inf
2 f(x,t)= (2/pi)*symsum((2/n)*sin(n*pi*x)*(1-exp(-0.2*n^2*pi^2*t)),n,1,inf)
3 fplot(f(x,t))
I am stuck on the 3rd line because it produces a blank plot. Can you show how to plot this function against time?
댓글 수: 0
답변 (1개)
Kiran Felix Robert
2021년 12월 6일
Hi Yi-SHuan Liu,
The following is an example,
syms f(x,t)
f(x,t) = x^2 + t^2 -1;
fimplicit(f , [0 1 0 1])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!