laplace transform in solving pde
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
%PDE: Matlab script M-file that plot solution of LT in solving PDE
syms x z y
clc
close all
%define the solution mesh
x = 0:.01:2;
Y = erf(x);
Z= erfc(x);
%plot the solution
plot(x,Y);
hold on;
plot(x,Z);
%plot the axis to show the linewidth
axis([0 2 -.1 1.1]);
title('Laplace transform in PDE')
ylabel('Y-axis')
xlabel('x-axis')
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!