フィルターのクリア

How to assign values to matrix

9 ビュー (過去 30 日間)
Jacob Bunyamin
Jacob Bunyamin 2023 年 2 月 10 日
コメント済み: Walter Roberson 2023 年 2 月 10 日
Good afternoon,
I have a matrix consisted of binary values (1 and 0), in which I want to assign the value of 1 to the 0 and 2 to 1 (for multiplication purposes). Is there a function to work on this problem?
Thanks,
  1 件のコメント
KSSV
KSSV 2023 年 2 月 10 日
Question is not clear.....can you show us an example?

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

採用された回答

Tushar Behera
Tushar Behera 2023 年 2 月 10 日
Hi jacob,
I assume you want to convert your matrix containing binary values such that 0 will be 1 and 1 will be 2.
This can be acheived in a multitude of ways. One such way will be to add each and every element of the matrix with 1. For example:
matrix = [0 1 0; 1 0 1];
b=matrix+1
%%
b =
1 2 1
2 1 2
Also, you can change the specific values in a matrix by using an element-wise comparison and assignment. Here's an example:
matrix = [0 1 0; 1 0 1];
result = (matrix == 0) + (matrix == 1) * 2
%%
result =
1 2 1
2 1 2
The resulting matrix result will have the values 1 and 2, as you required. This works by creating two logical arrays, one where the elements of matrix are equal to 0, and one where they are equal to 1. These logical arrays are then cast to numeric arrays, with zeros becoming ones and ones becoming twos. The two arrays are then added together to obtain the final result.
I hope this answers your question.
Regards,
Tushar
  3 件のコメント
Jacob Bunyamin
Jacob Bunyamin 2023 年 2 月 10 日
Hi Tushar,
Another question, I trie dto multiply my matrix , one is uint8 and one is uint 16 files. I could not use mtimes function because both are integers,
Do you know how to fix this issue?
Thanks
Walter Roberson
Walter Roberson 2023 年 2 月 10 日
uint16(TheUint8Matrix) .* TheUint16Matrix

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 2 月 10 日
YourMatrix + 1
satisfies that mapping

カテゴリ

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