Community Profile

photo

ledinh lam


Active since 2016

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
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 ago | 1

Question


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 ago | 4 answers | 0

4

answers

Answered
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 ago | 1

Answered
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 ago | 1