I want to plot a line but got a curve
Mostra commenti meno recenti
In my data, t = (0:0.01:0.64)', a is a colunm of constants (-9.81) of length 63. I want to plot a vs. t. It's supposed to be a horizontal line, but I got a graph with fluctuations around -9.81. How can I fix this? I used this code:
plot(t(1:length(a)),a)
3 Commenti
KSSV
il 21 Ago 2020
How did you plot? Show us the code and picture.
Walter Roberson
il 21 Ago 2020
What shows up for unique(diff(a))
Jiaqi Wang
il 21 Ago 2020
Risposta accettata
Più risposte (1)
Alan Stevens
il 21 Ago 2020
Just
t = (0:0.01:0.64)';
a = -9.81*ones(size(t));
plot(t,a)
gives a horizontal line.
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!