Padcat with multiple matrices

2 visualizzazioni (ultimi 30 giorni)
Chad
Chad il 5 Set 2013
How do I use padcat to create multiple nx4 matrices?
  2 Commenti
Image Analyst
Image Analyst il 5 Set 2013
Did you already try asking the Author?
Chad
Chad il 5 Set 2013
no but I figured it out, thanks.

Accedi per commentare.

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 5 Set 2013
Modificato: Azzi Abdelmalek il 5 Set 2013
You can use
A=[2 3;4 5];
m=4;
out=repmat(A,m,1)
%or
out=repmat(A,1,m)
  1 Commento
Azzi Abdelmalek
Azzi Abdelmalek il 5 Set 2013
[Chad commented]
Thanks guys, but I sort of side-stepped my problem using xlswrite in a for loop and updating the matrix each iteration. But Azzi's solution would also work

Accedi per commentare.

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by