Creating a matrix having repeating elements
Afficher commentaires plus anciens
% Dear users,
% Assume that I have a A matrix having the size of 5x5 and in the end;
% I want to get A=[1 -1 0 0 0; 1 -1 0 0 0; 0 1 -1 0 0; 0 1 -1 0 0; 0 0 1 -1 0]
% What is the easiest way to do it?
% Thanks in advance
6 commentaires
Fabio Freschi
le 4 Sep 2019
Is this matrix what you want? I don't understand the structure
A =
1 -1 0 0 0
1 -1 0 0 0
0 1 -1 0 0
0 1 -1 0 0
0 0 1 -1 0
Bruno Luong
le 4 Sep 2019
The easiest way is just type you matrix.
A=[1 -1 0 0 0; 1 -1 0 0 0; 0 1 -1 0 0; 0 1 -1 0 0; 0 0 1 -1 0]
Bruno Luong
le 4 Sep 2019
OK here is different and still simple:
A=[1 -1 0 0 0; 1 -1 0 0 0; 0 1 -1 0 0; 0 1 -1 0 0; 0 0 1 -1 0]+0
The point is your question is not well formulated
Rengin
le 4 Sep 2019
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!