how to use logic array

조회 수: 21 (최근 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