Borrar filtros
Borrar filtros

Plot multiple matrices in the same graph

2 visualizaciones (últimos 30 días)
Aziza Zaouga
Aziza Zaouga el 18 de Jul. de 2018
Comentada: KSSV el 30 de Ag. de 2018
Hello, I have an array initialized as follows
Delays_Array{N}= [];
and every 'Delays_Array{i}' has 2 columns and a variable number of rows. in the end of my program, i want to plot every 'Delays_Array{i}' in the same figure. Can you help me please ? thank you in advance :)

Respuesta aceptada

KSSV
KSSV el 18 de Jul. de 2018
figure
hold on
for i = 1:length(Delays_Array)
plot(Delays_Arrays{i}(:,1),Delays_Arrays{i}(:,2))
end

Más respuestas (0)

Categorías

Más información sobre Line 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