I have four curves for four different times as shown below in the figure. I need to draw the curve for time in between the given times e.g., I need to plot the curve for $t= 3$ and $t=10$ in matlab (this is just an example shown in below figure).
Is it possible, if so, please suggest something. A big thank you.![$\sin(xt)$ vs $x$ where $x=[0,\pi/2]$ at different time $t$](https://i.stack.imgur.com/xkkeD.jpg)
If I interpret your question correctly, you want to plot f(t,x)=sin(t*x) for various values of t and x? Am I right? If so, the following code creates a quite extensive graph with f(t,x) evaluated for many values of t and x, but a few values of t and x are marked.
The command
mesh(X,Y,Z)can make 3D plots of {X,Y,Z} data.Please use the Rotate 3D button in the Figure window to rotate the view of the 3D plot, then you will get a better feeling for what is plotted. You might also want to maximise your Figure window. Remember to look at the axis labels, to see where the t- and x-axes are while rotating.