Vineet Singhal
自 2019 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
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(v) a= length(v(v<32)); numfreeze =a; end
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(v) a= length(v(v<32)); numfreeze =a; end
5 years 前 | 4