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

조회 수: 8 (최근 30일)
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

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by