photo

Nadeem U Rehman


Last seen: plus de 2 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

All
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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 ex
function numfreeze = freezing(A) F = A(A<32); [row column] = size(A); if size(A) == [1 column] numfreeze = size(F,2); e...

plus de 3 ans il y a | 1