photo

dipanka tanu sarmah


Con actividad desde 2017

Followers: 0   Following: 0

Estadística

All
MATLAB Answers

0 Preguntas
3 Respuestas

Cody

0 Problemas
35 Soluciones

CLASIFICACIÓN
17.746
of 300.369

REPUTACIÓN
2

CONTRIBUCIONES
0 Preguntas
3 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
1

CLASIFICACIÓN
 of 20.936

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN
14.827
of 168.436

CONTRIBUCIONES
0 Problemas
35 Soluciones

PUNTUACIÓN
370

NÚMERO DE INSIGNIAS
1

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
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))

casi 8 años hace | 1

Respondida
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; ...

alrededor de 8 años hace | 0

Respondida
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)) ...

alrededor de 8 años hace | 0