photo

ledinh lam


自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

  • First Answer

查看徽章

Feeds

排序方式:

已回答
Shifting number to end of an array
as they said above . you can use this code. function v = move_me(v,a) if nargin <2 a = 0; end v = [v(v ~...

7 years 前 | 1

提问


Write a function called day_diff that takes four scalar positive integer inputs, month1, day1, month2, day2. These represents the birthdays of two children who were born in 2015. The function returns a positive integer scalar that is equal to the dif
I can't deal it anymore. I have trouble to check an integer number or an array number in order to input argument in this problem...

7 years 前 | 4 个回答 | 0

4

个回答

已回答
Creating a polyval function
function p = poly_val(c0,c,x) if isempty(c)==true p =c0; elseif isscalar(c)==true p = c0+c*x; else ...

7 years 前 | 1

已回答
How do you have a logical operator of true and false as your type but 0 and 1 as your value?
I think it will be : function el=eligible(v,q) if mean([v,q]) >= 92 && v>88 && q >88 el=true; else ...

7 years 前 | 1