I'm trying to create a matrix of odd numbers, and I'm having some trouble. Any ideas? Thanks

8 vues (au cours des 30 derniers jours)
function orms=odd_rms(nn)
lim = (nn * 2)-1;
odds = nums(1:2:lim); PROBLEM IS WITH THIS LINE
%(1:1:nn) = (odds(1:1:nn)^2);
%sumsquares =sum(squares)/nn;
orms =odds;
end

Réponses (1)

Ahmet Cecen
Ahmet Cecen le 12 Nov 2016
You might have meant to do:
odds = 1:2:lim
as it is unclear what nums is in the scope of this function.

Catégories

En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by