Community Profile

photo

Ravleen Kaur


Last seen: oltre un anno fa Attivo dal 2022

Followers: 0   Following: 0

Statistiche

All
  • Solver
  • First Answer

Visualizza badge

Feeds

Visto da

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

Risolto


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

quasi 2 anni fa

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

quasi 2 anni fa | 0