photo

muhammad usman


Last seen: presque 6 ans il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

MATLAB Answers

3 Questions
1 Réponse

RANG
32 058
of 300 863

RÉPUTATION
1

CONTRIBUTIONS
3 Questions
1 Réponse

ACCEPTATION DE VOS RÉPONSES
33.33%

VOTES REÇUS
1

RANG
 of 21 100

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 171 413

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

Question


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

presque 6 ans il y a | 2 réponses | 0

2

réponses

5

réponses

Question


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

presque 6 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
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...

presque 6 ans il y a | 0