For-end statements

2 visualizaciones (últimos 30 días)
Noah Kebschull
Noah Kebschull el 19 de Nov. de 2017
Respondida: Walter Roberson el 19 de Nov. de 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.

Respuesta aceptada

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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by