統計
All
Feeds
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
約5年 前
回答済み
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...
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...
約5年 前 | 1

