Community Profile

photo

dipanka tanu sarmah


2017년부터 활동

Followers: 0   Following: 0

통계

All
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
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))

6년 초과 전 | 1

답변 있음
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; ...

6년 초과 전 | 0

답변 있음
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)) ...

6년 초과 전 | 0