How do I vectorize the following code?

Hi,
I'm having trouble vectorizing the following code. The result should be a matrix with an upper triangle.
data = 1:1:10;
nn = length(data);
for x = 1:nn
for y = x:nn
X(x,y) = (data(y) - data(x)) / data(x);
end
end
All help gratefully received!

 Risposta accettata

X = triu(data(:)./data(:).' - 1)

4 Commenti

Hi, Thanks for this. This doesn't replicate the loop answers. Note y = x:nn.
Just reverse the slash,
X = triu(data(:).\data(:).' - 1)
That does it! Many thanks.
You're welcome, but please Accept-click the answer to signify that it solved your problem.

Accedi per commentare.

Più risposte (0)

Richiesto:

il 18 Gen 2018

Commentato:

il 18 Gen 2018

Community Treasure Hunt

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

Start Hunting!

Translated by