필터 지우기
필터 지우기

How to plot time-spatial distribution of the data?

조회 수: 6 (최근 30일)
d7366431
d7366431 2020년 5월 8일
답변: Sulaymon Eshkabilov 2022년 11월 25일
Hi,
I am not so good in coding and would appreciate it if you could guide me a bit.
How with the matlab I can plot the results as shown below?
My input matrix for this chart is shown below. Yellow (time steps), Green (position along the measurement line), Grey (Data obtained at specific position and time).
Thank you!

답변 (2개)

rajat aggarwal
rajat aggarwal 2020년 5월 12일
You can use plot3() function available in matlab for this. This is 3d data as for particular value of position and time there is a specific value.
>> plot3(X,Y,Z) ;
where
Z is the matrix in grey for example z= [ 0 2.03E-08 .............; 0 -6.8E-08.....................; ... ]
X is row vector of position[] for example position[] = [y1 y2 y3 y4 ......]
Y is row vector of time[] for example time[] = [t1 t2 t3 ..... ]
Please visit the following link for more information about plot function first.
As it is mentioned here that plot(p,q) will plot the coloumns of p corresponding to coloumns of q if both are matrices. If one of them is vector lets say p and length of p is equal to q(matrix) coloumn length then the function plots each matrix row versus the vector p.
Here in your example we have three arguments. Similar concept can be used there.
For more information you can refer the following links for plot3 functions.

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2022년 11월 25일
For this exercise, it is better to use one of the following functions:
imagesc()
contourf()

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by