Resetting a Time vector to zero
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
suppose I have the following time vector
x = [ 4 5 6 7 8 9 10 ]
I want it reset the vector to zero so I could use:
stepsize = x(2)-x(1)
newx = [ 0:stepsize:length(x)-1]
output:
0 1 2 3 4 5 6
Is there a faster way or more efficient way to do this in matlab?
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 25 Mar 2013
Modifié(e) : Azzi Abdelmalek
le 25 Mar 2013
newx=x-x(1)
1 commentaire
Azzi Abdelmalek
le 25 Mar 2013
x = [ 4.5 5.7 7.7 8.9 9.8 10.1 ]
newx=x-x(1)
newx =
0 1.2000 3.2000 4.4000 5.3000 5.6000
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!