フィルターのクリア

determine the coordinates with the 0's within a cell

1 回表示 (過去 30 日間)
Alberto Acri
Alberto Acri 2023 年 7 月 25 日
編集済み: Bruno Luong 2023 年 7 月 25 日
Hi! I have this cell. How can I determine the coordinates where the 0's are?
For example in 'matrix' I need to get a matrix with the coordinates (2,2) and (1,4):
matrix = importdata("matrix.mat");
out = [2,2; 1,4];

採用された回答

Bruno Luong
Bruno Luong 2023 年 7 月 25 日
編集済み: Bruno Luong 2023 年 7 月 25 日
Why storing scalars in cell and not in matrix? It is very inefficient.
load matrix
check_1
check_1 = 4×2 cell array
{[1]} {[1]} {[1]} {[0]} {[1]} {[1]} {[0]} {[1]}
[i,j]=find(cellfun(@(x) isequal(x,0), check_1));
ij = [i,j]
ij = 2×2
4 1 2 2

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by