photo

Roshan Singh


Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
4 Answers

RANK
104,445
of 298,545

REPUTATION
0

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,613

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 161,622

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

  • First Answer

View badges

Feeds

View by

Answered
Write a function called halfsum that takes as input an at most two-dimensional array A and computes the sum of the elements of A that are in the lower right triangular part of A
function summa=halfsum(a) [r,c]=size(a); summa=0; for x=1:r for y=1:c if (x==y)||(x<y) summa=a(x,y...

5 years ago | 0

Answered
counting no .of temperature less than 32 in array
function numfreeze = freezing(x) f = x(x<32); numfreeze = length(f); end

5 years ago | 0

Answered
how can i solve this ,can anyone provide me with code? whats wrong with my code ?
function valid=valid_date(year,month,day) if (year>0 && month>0 && day>0 && month<13 && day<32 && isscalar(year)==1 && isscalar...

5 years ago | 0