
MURSHED SK
Aligarh Muslim University
I am an undergraduate student of Aligarh Muslim University in Physics. I love to program in MATLAB. My particular interest is Quantum Computing.
MATLAB
Spoken Languages:
Bengali
Professional Interests:
MATLAB, Quantum Computing, Physics, Particle & Nuclear Physics, Quantum Mechanics
Statistics
0 Domande
2 Risposte
RANK
266.287
of 273.000
REPUTAZIONE
0
CONTRIBUTI
0 Domande
2 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 122.402
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Content Feed
Write a function called under_age that takes two positive integer scalar arguments: age that represents someone's age, and limit that represents an age limit. The function returns true if the person is younger than the age limit. If the second arg
This might help: function too_young = under_age(age, limit) if nargin <2 limit =21; end if age<limit too_young = true;...
4 mesi fa | 0
Q write a function called picker that takes three arguments called condition, in1 and in2 in this order. The argument condition is a logical. If it is true, the function assigns the value of in1 to the output argument out, otherwise, it assigns the v
That's the easiest one. check below: function out = picker(condition,in1,in2); if condition == 1; out = in1; else ...
4 mesi fa | 0