how to use logic array

20 次查看(过去 30 天)
karishma koshy
karishma koshy 2019-8-1
评论: Jon 2019-8-2
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 个评论
Guillaume
Guillaume 2019-8-1
@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 2019-8-1
Hi Sir
I thought it was not clear and had less information. That why I resubmitted it added informations. Sorry for your inconvenience.

请先登录,再进行评论。

采纳的回答

Jon
Jon 2019-8-1
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 个评论
karishma koshy
karishma koshy 2019-8-2
Dear Sir,
I know what to do theoretically, but I'm new to coding.
That's why I am stuck with this.
Jon
Jon 2019-8-2
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.

请先登录,再进行评论。

更多回答(1 个)

Jackson Burns
Jackson Burns 2019-8-1
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 个评论
karishma koshy
karishma koshy 2019-8-1
编辑:karishma koshy 2019-8-1
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 2019-8-1
You will need to adjust the dimensions of your logical array to match the data.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by