Borrar filtros
Borrar filtros

How to plot a 3D plot.

4 visualizaciones (últimos 30 días)
Bharath
Bharath el 15 de Feb. de 2015
Comentada: Image Analyst el 16 de Feb. de 2015
I've 2 matrices X and Y of size 8192x28. Now I want to plot a 3D plot (Waterfall graph) which would like something like this
I want to plot first line with 1st column Vs 1st column Y and then the next. In the similar way I want to do for 28 column to form a overlapping graph.
I tried using plot3 command but I get errors. Can someone give me a direction on this. Thanks in advance.

Respuesta aceptada

Image Analyst
Image Analyst el 15 de Feb. de 2015
I know you must have already tried this, but since you didn't mention it explicitly I thought I'd ask. What happened when you tried the waterfall() function?
  2 comentarios
Bharath
Bharath el 15 de Feb. de 2015
Editada: Bharath el 15 de Feb. de 2015
I tried using waterfall command
Axisf = sort(reshape([fAxis1,fAxis2], 1, []))';
Axisf = repmat(Axisf,1,28); % making a 8192x28 matrix for frequency
Amplitude = reshape([FR,FA],28,[])'; % already a 8192x28 matrix amplitude
%Define Time Axis so that I can use it as another axis
TimeAxis = (1:8192)';
TimeAxis = repmat(TimeAxis,1,28);
waterfall( Axisf,TimeAxis,Amplitude);
As you can see in the figure, it's completly something else.
Image Analyst
Image Analyst el 16 de Feb. de 2015
Attach your data file if you want us to try anything.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by