Borrar filtros
Borrar filtros

Multiple Lines in a Stacked Plot

14 visualizaciones (últimos 30 días)
Felipe Dicker
Felipe Dicker el 21 de Nov. de 2023
Comentada: Dyuman Joshi el 21 de Nov. de 2023
I'd like to have 3 different vectors plotted onto 2 graphs within a stacked plot. For example, I wish to plot vectors a and b in the first graph of the stacked plot and variable c on the second graph, with the x-axis of the stacked plot being another vector, t. How would I be able to do that?

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 21 de Nov. de 2023
Movida: Dyuman Joshi el 21 de Nov. de 2023
If you are working with R2018b or a later version, check out stackedplot
%Random data
n = 10;
t = (1:n).';
a = zeros(n,1);
b = ones(n,1);
c = rand(n,1);
data = table(t, a, b, c)
data = 10×4 table
t a b c __ _ _ ________ 1 0 1 0.89507 2 0 1 0.099055 3 0 1 0.70476 4 0 1 0.65991 5 0 1 0.78316 6 0 1 0.80992 7 0 1 0.32504 8 0 1 0.10411 9 0 1 0.6188 10 0 1 0.34006
vars = {["a" "b"], "c"};
stackedplot(data, vars, "XVariable", "t")
  4 comentarios
Felipe Dicker
Felipe Dicker el 21 de Nov. de 2023
Works great, thank you so much!
Dyuman Joshi
Dyuman Joshi el 21 de Nov. de 2023
You are welcome!

Iniciar sesión para comentar.

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