matrix starting index from zero

17 vues (au cours des 30 derniers jours)
mahsa
mahsa le 4 Août 2014
Commenté : Rik le 3 Avr 2021
hello everybody how we can change matrix first index? i mean that start from zero instead of one. for example
a=[60,78;100,400;200,600]
a(0,0)=60
a(1,0)=100
  1 commentaire
Sagar Damle
Sagar Damle le 4 Août 2014
But why do you want the index to start from zero ? In MATLAB,it starts from one and this does not pose any problem !!

Connectez-vous pour commenter.

Réponses (2)

Roger Wohlwend
Roger Wohlwend le 4 Août 2014
You cannot do that. The first element is a(1,1) and there's no way to change that.
  1 commentaire
mahsa
mahsa le 5 Août 2014
i found it...

Connectez-vous pour commenter.


Azzi Abdelmalek
Azzi Abdelmalek le 4 Août 2014
Modifié(e) : Azzi Abdelmalek le 4 Août 2014
Subscript indices must either be real positive integers or logicals
you can work with your indices by adding 1 to them
a(0+1,0+1)
a(1+1,0+1)
  3 commentaires
Mahnoor Naseer
Mahnoor Naseer le 3 Avr 2021
pls tell me how you did it
Rik
Rik le 3 Avr 2021
It is unlikely mahsa is still monitoring this thread. Why don't you explain why you want this?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing 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!

Translated by