M
Md Multan Biswas
Guest
Dear VHDL Coders,
I am trying to get the rank of elements from an array of data. For example, I have an array, Voltage = [20 40 10 30] ;
The position of the elements in the voltage array is ranged from 0 to 3.
Using a bubble sorting algorithm, I obtained the position index of the elements in the array as follows:
Index (0)= 2 ; Index (1)= 0 ; Index (2)= 3 ; Index (3)= 1 ;
However, basically I just the rank of the elements in the voltage array. I expect to get:
Rank (0) = 1 ; Rank (1) = 3 ; Rank (2) = 0 ; Rank (3) = 2 ;
I would appreciate any of your help and suggestion to get the desired outcome using the VHDL code. Thanks, a bunch in advance
I am trying to get the rank of elements from an array of data. For example, I have an array, Voltage = [20 40 10 30] ;
The position of the elements in the voltage array is ranged from 0 to 3.
Using a bubble sorting algorithm, I obtained the position index of the elements in the array as follows:
Index (0)= 2 ; Index (1)= 0 ; Index (2)= 3 ; Index (3)= 1 ;
However, basically I just the rank of the elements in the voltage array. I expect to get:
Rank (0) = 1 ; Rank (1) = 3 ; Rank (2) = 0 ; Rank (3) = 2 ;
I would appreciate any of your help and suggestion to get the desired outcome using the VHDL code. Thanks, a bunch in advance