Count the number of times a sequence of numbers appears regardless of order?

1 view (last 30 days)
I want to create a code that will analyze an array, and list the number of times a sequence appears regardless of the order?
A=[1, 2, 3; 3, 2, 1; 2, 3, 2; 2, 1, 3];
For example, in the above array I want to know how many times equal sequences appear and the numbers in that sequence. So in this case the code would recognize that "1, 2, 3", and "3, 2, 1" and "2,1,3" are the same regardless of order, list the number sequence and how many times it appears. So, "1,2,3" and appears 3 times. I tried my best to word this without sounding confusing. I'll answer any questions regarding what i'm trying to achieve I'm just not sure how to code something like this.
  4 Comments
Walter Roberson
Walter Roberson on 20 Nov 2020
Will the sequence to be found always occupy the whole row?
Is it necessary to figure out what the sequences are and how long they are?

Sign in to comment.

Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!