Borrar filtros
Borrar filtros

3d contour plot in MATLAB

1 visualización (últimos 30 días)
Pritesh Shah
Pritesh Shah el 7 de Mzo. de 2014
Comentada: Pritesh Shah el 7 de Mzo. de 2014
Hi,
I want to plot 3D contour in MATLAB. I have three dimensions (X, Y,X) and value of each value in specific grid.
Please help.
I have attached sample data set for the same.

Respuestas (1)

David Sanchez
David Sanchez el 7 de Mzo. de 2014
To read your data:
[my_data headers] = xlsread('test data.xlsx');
But you present 4D data: 3 coordinate and value. Yo have to choose what to plot against what. For example:
>> x=my_data(:,1);
>> y=my_data(:,2);
>> z=my_data(:,3);
>> tt=my_data(:,4);
>> plot3(x,y,tt)
>> tt2=reshape(tt,51,121);
>> contour(x(1:51),y(1:121),tt2')
  1 comentario
Pritesh Shah
Pritesh Shah el 7 de Mzo. de 2014
I want to plat tt data for every value of X, Y and Z.

Iniciar sesión para comentar.

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by