Azzera filtri
Azzera filtri

how to vectorize these for loop

2 visualizzazioni (ultimi 30 giorni)
Anita pawar
Anita pawar il 12 Set 2017
Commentato: Rik il 12 Set 2017
clc;
clear all;
close all;
a=[1,3,8];
for i=1:3
b(:,:,i)=sisobnds(a(i),w,wbd,ws,p,R,nompt);
end
plotbnds(b(:,:,1))
plotbnds(b(:,:,2))
plotbnds(b(:,:,3))
  3 Commenti
James Tursa
James Tursa il 12 Set 2017
The loop only has 3 iterations. Even if vectorizing is possible with the sisobnds function, how much do you think it will help?
Rik
Rik il 12 Set 2017
Also a general tip: don't use clear all,close all. Use functions so separate workspaces and variables. If you insist on using it, use clear variables, so you can still use breakpoints.

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Large Files and Big Data in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by