Error using / Matrix dimensions must agree...
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Nedra Ebdelli
il 11 Mag 2015
Risposto: Nedra Ebdelli
il 11 Mag 2015
Hi,
The content of my script is the flowing
parfor i = 1:26
run('..\extract'+i+'.m')
end
the error is Error using ==> plus Matrix dimensions must agree
Error in ==> parallel_function at 473 F(base, limit);
Thanks.
0 Commenti
Risposta accettata
Titus Edelhofer
il 11 Mag 2015
Hi,
MATLAB is not Java ;-).
Concatenating strings uses [] in MATLAB:
run(['..\extract' num2str(i) '.m'])
Titus
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Parallel for-Loops (parfor) in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!