how to use logic array

28 ビュー (過去 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 Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by