how to use logic array

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

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!