plot single vector and plot matrix
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
piero
el 23 de Nov. de 2023
Editada: Dyuman Joshi
el 23 de Nov. de 2023
TEE =[3 8 9 12 3 2]
TEE1=[98 45 32 45 1 8]
TEE2(1,:)=TEE;
TEE2(2,:)=TEE1;
figure
hold on
plot(TEE)
plot(TEE1)
hold off
figure
plot(TEE2)
but the result is different!
how can build matrix using single vector and plot it?
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 23 de Nov. de 2023
Editada: Dyuman Joshi
el 23 de Nov. de 2023
To get the same result, transpose the array and then plot.
TEE =[3 8 9 12 3 2];
TEE1=[98 45 32 45 1 8];
TEE2(1,:)=TEE;
TEE2(2,:)=TEE1;
figure
hold on
plot(TEE)
plot(TEE1)
hold off
figure
%% Plot the transpose of the array
plot(TEE2.')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!