Chandan Kumar
Followers: 0 Following: 0
Statistiques
0 Questions
3 Réponses
RANG
12 745
of 295 527
RÉPUTATION
4
CONTRIBUTIONS
0 Questions
3 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
2
RANG
of 20 242
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 057
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
Feeds
write a function called saddle in the input matrix M , the function should return with exactly two column vector and each row of output vector represent dimensions of saddle point in the input matrix M
function s = saddle(M) [r, c] = size(M); % Initialize the saddle points to an empty array % Check the dimensions to see if i...
plus de 3 ans il y a | 0
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. If any of the inputs is not
function valid = valid_date(year,month,date) y=year;m=month;d=date; if ~isscalar(y)|| ~isscalar(m) || ~isscalar(d) valid=...
plus de 3 ans il y a | 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
function out = picker(condition,in1,in2) if (condition==1) out=in1 else out=in2 end
plus de 3 ans il y a | 2