Azzera filtri
Azzera filtri

sqrt of elements of a vector

17 visualizzazioni (ultimi 30 giorni)
dav
dav il 19 Feb 2013
Hi
I have a vector of five elements
I need to calculate the sqrt of each element and put it in anoter vector. How can I do this:
What I have V = [ 4 9 49 25 100]
What I want A = [2 3 7 5 10]
It is better to know how to do this in a "for" loop too.
Thanks

Risposta accettata

the cyclist
the cyclist il 19 Feb 2013
A = sqrt(V);

Più risposte (1)

Youssef  Khmou
Youssef Khmou il 19 Feb 2013
hi,
Using a loop :
for x=1:length(V)
% A(x)=sqrt(V(x));
A(x)=V(x)^0.5;
end
Alternative sol :
A=V.^0.5;

Categorie

Scopri di più su MATLAB Coder 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!

Translated by