필터 지우기
필터 지우기

For-end statements

조회 수: 1 (최근 30일)
Noah Kebschull
Noah Kebschull 2017년 11월 19일
답변: Walter Roberson 2017년 11월 19일
I have a row vector v of randomly generated numbers. I need to create a for-end statement using a looped variable, k, that will be assigned to every element of the row vector whose elements represent the positions of the row vector. I need to find the number of negative elements in the vector, number of positive elements, the sum of all elements, and the product range of all real numbers all within the for-end. I've started with naming and defining my variables, but I can't seem to figure out how to start the for-end statement.

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 19일
for K = 1 : length(v)
total = total + v(K);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by