Defining a piecewise function of two variables

I need to plot the solution of a wave equation in three dimension. The solution is in this form: u(x,t)= sin(xt) if x>t; 0 if x<=t. The problem is I am not able to define such function of two variables. While searching I got the way to define functions using the command "piecewise" but it is not working in my case. More precisely, I tried the following code:
x=linspace(0,1,50);
t=linspace(0,1,50);
[x,t]=meshgrid(x,t);
z= piecewise(x>t, sin(x*t), x<=t, 0)
mesh(z,x,t)
Please advice.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

질문:

2017년 3월 30일

편집:

2017년 3월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by