Community Profile

photo

Ravleen Kaur


Last seen: más de 1 año hace Con actividad desde 2022

Followers: 0   Following: 0

Estadísticas

All
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Resuelto


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

casi 2 años hace

Resuelto


Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...

casi 2 años hace

Resuelto


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:...

casi 2 años hace

Respondida
Write a function called valid_date that takes three positive integer scalar inputs year, month, day. If these three represent a valid date, return a logical true, otherwise false. The name of the output argument is valid.
function valid = valid_date(year,month,day) if (isscalar(year) && (year>=1) && year==fix(year)) && (isscalar(month) && ((1<=mon...

casi 2 años hace | 0