photo

muhammad usman


Last seen: mehr als 4 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

  • Thankful Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Write a function called draw_constellations that takes no input arguments and returns no output arguments. Instead, it obtains its input via the function ginput.
Write a function called draw_constellations that takes no input arguments and returns no output arguments. Instead, it obtains i...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

5

Antworten

Frage


What is wrong with my code ?
function coded = caesar(a,b); x = length(a); y = double(a); for i = 1:x y(i) = y(i) + b; if y(i) > 126; j = y(i)- ...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Write a function called holiday that takes two input arguments called month and day; both are scalar integers representing a month (1-12) and a day (1-31). You do not need to check that the input is valid. The function returns a logical true if the s
function H = holiday(month,day); if (month == 1 && day == 1) || (month == 7 && day ==4) || (month == 12 && day == 25) || (month...

mehr als 4 Jahre vor | 0