フィルターのクリア

After using triu, how do I exclude the 0s in the vector?

6 ビュー (過去 30 日間)
Lakyn
Lakyn 2016 年 8 月 23 日
コメント済み: Walter Roberson 2016 年 8 月 23 日
Hi all, So my matrix, lets call it A is 76x76, and I only want the top triangular corner(without the main diagonal line). I managed to get everything right, but the numbers that I don't want (lower triangle) still appears as 0, how do I remove it? My code is as below.
function M = vector2(A)
B = triu(A,1)
M = reshape(B, [] ,1)
This makes my matrix into a vector which is what I want, but there are still 0s in place of the numbers that I don't want, when I want it to just disappear completely. Please help.
Thank you very much!

採用された回答

James Tursa
James Tursa 2016 年 8 月 23 日
M = A(triu(true(size(A)),1));
  3 件のコメント
James Tursa
James Tursa 2016 年 8 月 23 日
Yep ... I didn't notice this was a repeat Question.
Walter Roberson
Walter Roberson 2016 年 8 月 23 日
And I had already given that solution a couple of days ago when I listed off three ways of extracting the outputs from the pairwise averages for a previous question.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by