Chandan Kumar
Followers: 0 Following: 0
Statistics
0 Questions
3 Answers
RANK
12,745
of 295,527
REPUTATION
4
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
2
RANK
of 20,242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,057
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF 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...
3 years ago | 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=...
3 years ago | 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
3 years ago | 2