photo

Md Shahidullah Kawsar


Boise State University

Last seen: más de 3 años hace Con actividad desde 2018

Followers: 0   Following: 0

Ph.D. Student in Computing

Estadística

  • Thankful Level 3

Ver insignias

Feeds

Ver por

Pregunta


How to find the total number of elements in individual row of a cell array?
C = {[1; 2; 3]; [2; 1; 3, 4]; [3; 1; 2]; [1; 2]}; Here, in first row, elements are 1,2,3,1 | total number of elements = 4 i...

casi 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How to find out the maximum number of occurrences of the sequences inside the cell array beginning with particular digit?
% Suppose I have a cellarray C = {[1; 2; 3]; [2; 1; 3, 4]; [3; 1; 2]; [1; 2]}; % where any digit won't repeat in the individual...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to find the number of occurrences of a particular sequence inside the cell array?
% Suppose I have a cellarray C = {[1; 2; 3]; [1; 2; 3; 4]; [4; 1; 2; 3]; [1; 2]}; c{:} ans = 1 2 3 ans = 1 2 3 4 an...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to count the top five pairs (for each digit) which have the highest number of occurrences in a cell array?
Suppose I have a cell array C = {[1; 3; 5; 4; 6]; [1; 2; 3; 4; 5; 6; 7]; [1; 4; 3; 6]}; c{:} ans = 1 3 5 ...

casi 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to count the total number of occurrences of each digit avoiding the first elements of each cell?
Suppose I have a cell array C = {[1; 4; 7]; [2; 5; 8; 9]; [3; 4]}; c{:} ans = 1 4 7 ans = 2 5 8...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to count the total number of occurrences of each digit in cell arrays?
Suppose I have a cell array C = {[1; 4; 7]; [2; 5; 8; 9]; [3; 4]}; c{:} ans = 1 4 7 ans = 2 5 8...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to count the number of occurrences of each pair in a cell?
Suppose I have a cell array C = {[1; 2; 3]; [1; 2; 3; 4]; [1; 2]}; c{:} ans = 1 2 3 ans = 1 2 ...

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to find the number of occurrences of each pair in a matrix?
Suppose my A = [1 2 3; 2 3 1; 2 1 3] % where any digit won't repeat in the same row. % I need to ...

casi 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to separate a column into rows based on the element of a different column?
Input: a = {1 2; 2 3; 3 5; -1 6; 5 7; 6 8; 7 9; 8 10; -1 11}; I have a 9x2 cel...

casi 6 años hace | 1 respuesta | 0

1

respuesta