Multiple x-axis for a single plot
34 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am a newbie matlab user.
So, I have
x1 = [183.75 189.748 195.745 201.743];
x2 = [0 1 2 3];
y = [10 30 80 50 90 25 40 70];
I am trying to have a subplot where x1 is the principal x-axis and x2 is the secondary x-axis. The plot will have 2 curves such as below
plot(x1, y(1:4), x1, y(5:8))
I went through matlab forums but could not find any specific answer of my problem.
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!