plotting columns in figures?

1 visualización (últimos 30 días)
Mary292
Mary292 el 22 de En. de 2015
Editada: Mary292 el 4 de Mzo. de 2015
shgbiasglnawlgbvlkabvf gsiaoliug,kbak.bg aelighoiabgfkab ish;oaigbagb fsihgoBGKRA.DGD.BSJVFASKJVG rhg;aogi

Respuesta aceptada

Chris Barnhart
Chris Barnhart el 22 de En. de 2015
I assume you want the data distributed as evenly as possible? (Avoiding 5 figs with 6 cols, and 1 fig with 1 col)
num_cols_base = floor(num_cols / num_figs); % all figures have this minimum number of cols
num_fig_w_extra = mod(num_cols, num_figs) % this many figures will have 1 more data col
num_fig_w_base = num_figs - num_figs_w_extra % this many figures have the base number
total_cols = (num_figs_w_base * num_cols_base) + (num_figs_w_extra * (1 + num_cols_base)); % sanity check
A double for loop using figure, and hold on and hold off does the rest.
  1 comentario
Bob Johnson
Bob Johnson el 25 de Feb. de 2015
Did you find out what you had to put in place of the???

Iniciar sesión para comentar.

Más respuestas (0)

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!

Translated by