photo

dipanka tanu sarmah


Active since 2017

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
3 Answers

Cody

0 Problems
35 Solutions

RANK
17,746
of 301,229

REPUTATION
2

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 21,201

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
15,507
of 173,547

CONTRIBUTIONS
0 Problems
35 Solutions

SCORE
370

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • First Answer
  • Solver

View badges

Feeds

View by

Answered
Count number of specific values in matrix
along with this if you want to count the number of NaN ,(if there any) use nnz(isnan(m))

8 years ago | 1

Answered
Is there a way to obtain desired index without using 'find'?
you can use the following function : function posX = findPosition(x,y) posX=[]; for i =1:length(x) p=x-y; ...

8 years ago | 0

Answered
find repeating numbers
function y = repeated(x) for i=1:length(x) if length(find(x==i)) >=2 y{i,1}=x(i); y{i,2}=length(find(x==i)) ...

8 years ago | 0