Community Profile

photo

Jorge Briceño


Last seen: casi 3 años hace Con actividad desde 2018

Followers: 0   Following: 0

Estadísticas

  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


Number of first days of the month equals to Mondays
Hello guys, I have an assignment that states: "Write a function called day_counter that returns the number of Mondays that fe...

alrededor de 6 años hace | 4 respuestas | 0

4

respuestas

Respondida
The function move_me is defined like this: function w = move_me(v,a). The first input argument v is a row-vector, while a is a scalar. The function moves every element of v that is equal to a to the end of the vector.
Hi, This answer might be helpful: function w= move_me(v,a) % The first input argument v is a row-vector, while a is a s...

alrededor de 6 años hace | 0

Respondida
c0 and x are scalars, c - vector, and p - scalar. If c is [ ], then p = c0. If c is a scalar, then p = c0 + c*x . Else, p =
Here is my solution: function p = poly_val(c0,c,x) format long n=(1:1:length(c)); c=c(:)' & This part converts any array...

alrededor de 6 años hace | 1

Respondida
Write a function called one_per_n that returns the smallest positive integer n for which the sum 1 + 1/2 + 1/3 + … + 1/n , is greater than or equal to x where x is the input argument. Limit the maximum number n of terms in the sum to 10,000 .
Hello Nava, Maybe you could also try to simplify your code. Here is my example: function out = holiday (m, d) if (m==1 ...

alrededor de 6 años hace | 0

Respondida
How do you have a logical operator of true and false as your type but 0 and 1 as your value?
Hi Alexandra, Maybe another alternative would be: function [isEligible]=eligible( v,q ) Your_Output_Name= v>88 && q>...

alrededor de 6 años hace | 2