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년 초과 전 | 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년 초과 전 | 답변 수: 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년 초과 전 | 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년 초과 전 | 1