Plotting all the columns of a matrix

30 visualizaciones (últimos 30 días)
Vinay Killamsetty
Vinay Killamsetty el 29 de Ag. de 2019
Comentada: KALYAN ACHARJYA el 29 de Ag. de 2019
Hi,
I want to plot columns of two matrices Z_imag and Z_real in two separate graphs.
I tried to do this code but I wasnt able to:
Z_imag=randi(10,10,3);
Z_real=randi(10,10,3);
width_mil=1:10
for i=1:1:3
figure(1)
Z_im = axes;
plot( Z_im,width_mil,Z_imag(:,i),'-o');
title('Imaginary part of the impedance');
xlabel('W [mil]');
ylabel('Im{Z}');
figure(2)
Z_re = axes;
plot(Z_re,width_mil,Z_real(:,i),'-o');
title('Real part of the impedance');
xlabel('W [mil]');
ylabel('re{Z}');
end
  2 comentarios
the cyclist
the cyclist el 29 de Ag. de 2019
Can you upload your data in a MAT file, so that we can execute your code?
Vinay Killamsetty
Vinay Killamsetty el 29 de Ag. de 2019
Editada: Vinay Killamsetty el 29 de Ag. de 2019
Thank you, I have added more information to the code
Z_imag=randi(10,10,3);
Z_real=randi(10,10,3);
width_mil=1:10
for i=1:1:3
figure(1)
Z_im = axes;
plot( Z_im,width_mil,Z_imag(:,i),'-o');
title('Imaginary part of the impedance');
xlabel('W [mil]');
ylabel('Im{Z}');
figure(2)
Z_re = axes;
plot(Z_re,width_mil,Z_real(:,i),'-o');
title('Real part of the impedance');
xlabel('W [mil]');
ylabel('re{Z}');
end
Could you help with this edited code

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 29 de Ag. de 2019
I want to plot columns of two matricesZ_imag and Z_real in two separate graphs.
I assumed, stack bar plot of individual column elements:
matricesZ_imag=rand(4,5);
Z_real=randi(10,4,5)
figure,bar(matricesZ_imag','stacked');
figure,bar(Z_real','stacked');
  10 comentarios
Vinay Killamsetty
Vinay Killamsetty el 29 de Ag. de 2019
Thank you ver much for your solution. It works
KALYAN ACHARJYA
KALYAN ACHARJYA el 29 de Ag. de 2019
Its my pleasure, Vinay!

Iniciar sesión para comentar.

Más respuestas (1)

madhan ravi
madhan ravi el 29 de Ag. de 2019
Editada: madhan ravi el 29 de Ag. de 2019
No loops needed:
plot(mat)
axis([0,5,0,5])
  1 comentario
KALYAN ACHARJYA
KALYAN ACHARJYA el 29 de Ag. de 2019
Editada: KALYAN ACHARJYA el 29 de Ag. de 2019
Yes @Madhan +1 Thanks

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Performance en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by