fill row of matrix

17 visualizzazioni (ultimi 30 giorni)
yousef Yousef
yousef Yousef il 9 Apr 2014
Commentato: Ayesha Punjabi il 16 Apr 2019
Assume I have d=[1 3 5 6 7 8 1 4 5 10], and e=zeros(5,10). I want to take only the first 4 elements of d and put them into the first row of e.

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 9 Apr 2014
d=[1 3 5 6 7 8 1 4 5 10],
e=zeros(5,10)
e(1,1:4)=d(1:4)
  3 Commenti
yousef Yousef
yousef Yousef il 10 Apr 2014
Is it possible to remove repetitions from the adjacent rows(I'm not talking about zeros) ?
8 1 6 7 5 10 9 3 4 2
3 1 6 8 0 0 0 0 0 0
3 4 5 9 0 0 0 0 0 0
2 8 5 1 0 0 0 0 0 0
2 4 3 10 0 0 0 0 0 0
Ayesha Punjabi
Ayesha Punjabi il 16 Apr 2019
+1
even i have the same doubt...

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by