photo

Md Shahidullah Kawsar


Boise State University

Last seen: 3 years ago Active since 2018

Followers: 0   Following: 0

Ph.D. Student in Computing

Statistics

  • Thankful Level 3

View badges

Feeds

View by

Question


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

5 years ago | 0 answers | 0

0

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 2 answers | 0

2

answers

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 1 answer | 0

1

answer

Question


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

5 years ago | 2 answers | 0

2

answers

Question


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

5 years ago | 1 answer | 0

1

answer