Azzera filtri
Azzera filtri

assigning of multiple arrays

3 visualizzazioni (ultimi 30 giorni)
CHANDRABHAN Singh
CHANDRABHAN Singh il 26 Set 2021
Risposto: KSSV il 26 Set 2021
I have 5 different arrays of same size. How can i optimize this? Something like rhoo = thetaa = thetaa1 = thetaa2 = zeros(ss2,121).
[ss1, ss2] = size(0:1:38);
zitaa = ones(ss2,121);
rhoo = zeros(ss2,121);
thetaa = zeros(ss2,121);
thetaa1 = zeros(ss2,121);
thetaa2 = zeros(ss2,121);

Risposta accettata

KSSV
KSSV il 26 Set 2021
Read about deal.
[ss1, ss2] = size(0:1:38);
zitaa = ones(ss2,121);
[rhoo,thetaa,thetaa1,thetaa2] = deal(zeros(ss2,121)) ;

Più risposte (0)

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by