Clear Filters
Clear Filters

For-end statements

1 view (last 30 days)
Noah Kebschull
Noah Kebschull on 19 Nov 2017
Answered: Walter Roberson on 19 Nov 2017
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.

Accepted Answer

Walter Roberson
Walter Roberson on 19 Nov 2017
for K = 1 : length(v)
total = total + v(K);
end

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!