Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

counting no .of temperature less than 32 in array

1 visualización (últimos 30 días)
Abhishek singh
Abhishek singh el 3 de Abr. de 2019
Cerrada: madhan ravi el 30 de Ag. de 2020
function numfreeze = freezing(v)
count = 0;
i =v()
j = 32
if i < 32
count = count+1
numfreeze = count
else
end
  1 comentario
Abhishek singh
Abhishek singh el 3 de Abr. de 2019
geeting errror
i =
45 21 32 31 51 12
j =
32
Output argument "numfreeze" (and maybe others) not assigned during call to "freezing".

Respuestas (6)

Ngei Katumo
Ngei Katumo el 22 de Ag. de 2019
function w = freezing (A)
w = sum (logical (A(A<32)));
end

madhan ravi
madhan ravi el 3 de Abr. de 2019
v=[45 21 32 31 51 12];
threshold=32;
numfreeze = freezing(v,threshold) % function call
function numfreeze = freezing(v,threshold) % function definition
numfreeze = nnz(v<threshold);
end
  6 comentarios
Image Analyst
Image Analyst el 11 de Jun. de 2019
You mean freezing.m, since that's what was asked.
madhan ravi
madhan ravi el 15 de Sept. de 2019
Ah yes exactly:)

Nazneen Sayyad
Nazneen Sayyad el 10 de Jun. de 2019
Write a function called freezing that takes a vector of numbers that correspond to daily low temperatures in Fahrenheit. Return numfreeze, the number of days with sub freezing temperatures (that is, lower than 32 F) without using loops. Here is an example run:
numfreeze = freezing([45 21 32 31 51 12])
numfreeze =
3
function numfreeze = freezing(A)
B=A(A<32);
numfreeze=numel(B);
end

Ajith Thomas
Ajith Thomas el 19 de Jul. de 2019
function numfreeze=freezing(w)
lowerthan_32=w(w<32);
no_logical_values=lowerthan_32(lowerthan_32>=0);
numfreeze=length(no_logical_values);
end
  1 comentario
Ajith Thomas
Ajith Thomas el 19 de Jul. de 2019
function numfreeze=freezing(w)
lowerthan_32=w(w<32);
numfreeze=numel(lowerthan_32);
end

Roshan Singh
Roshan Singh el 15 de Sept. de 2019
function numfreeze = freezing(x)
f = x(x<32);
numfreeze = length(f);
end

MADHURJYA DAS
MADHURJYA DAS el 30 de Ag. de 2020
function numfreeze=freezing(A)
x=(A<32);
numfreeze=sum(x(:));
end

Etiquetas

Productos


Versión

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by