how to use logic array

22 views (last 30 days)
karishma koshy
karishma koshy on 1 Aug 2019
Commented: Jon on 2 Aug 2019
i have a 8x6 logical array
result1 =
8×6 logical array
1 0 0 0 0 0
0 0 0 1 0 0
0 0 0 0 1 0
0 0 0 0 0 0
0 1 0 0 0 0
0 0 1 0 0 0
0 0 0 0 0 1
0 0 0 0 0 0
how to use this logical array to extract the values in two matrix assosiated with logical ones
  8 Comments
Guillaume
Guillaume on 1 Aug 2019
@karishma, you asked this question already and I asked for clarification. Instead of clarifying you deleted that question and reposted it with even less information.... and you get asked the same clarifications.
So,if you want help, rather than wasting everybody's time do answer the questions that you're asked and spend time explaining everything clearly.
The question that you deleted was a lot better expressed than what you've written above even though it wasn't clear. It's even less clear now.
Personally, I won't contribute anymore since my input wasn't thought worthwile.
karishma koshy
karishma koshy on 1 Aug 2019
Hi Sir
I thought it was not clear and had less information. That why I resubmitted it added informations. Sorry for your inconvenience.

Sign in to comment.

Accepted Answer

Jon
Jon on 1 Aug 2019
It isn't quite clear the specifics of what you want to retrieve but for example if you wanted to get the row in frame 1 that matches row 2 in frame 2 you could use
row = row_frame1_adata(result1(:,2),:)
  17 Comments
karishma koshy
karishma koshy on 2 Aug 2019
Dear Sir,
I know what to do theoretically, but I'm new to coding.
That's why I am stuck with this.
Jon
Jon on 2 Aug 2019
Your application is quite complicated and probably is not a good place to start learning how to code. I would suggest that if you have not done so already you should first complete the free MATLAB On Ramp training,
Make sure you work your way all the way through this and don't skip any steps.
After you complete the training and come back to your problem I think you will find you will be able to code a solution.

Sign in to comment.

More Answers (1)

Jackson Burns
Jackson Burns on 1 Aug 2019
You can use Masking to index your array of results. Try this:
row_frame_data(result1)
Where row_frame_data is the 8*6 atrix of results and result1 is the logical matrix of the values you want.
  4 Comments
karishma koshy
karishma koshy on 1 Aug 2019
Edited: karishma koshy on 1 Aug 2019
In horizontal it's the number of elements in frame k and in vertical it's the number of elements in frame k+1 ie it's 8x6 array. The logical array was obtained using Hungarian algorithm
Jackson Burns
Jackson Burns on 1 Aug 2019
You will need to adjust the dimensions of your logical array to match the data.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!