フィルターのクリア

How to make specific elements of a cell equal to zero?

6 ビュー (過去 30 日間)
Haitham AL Satai
Haitham AL Satai 2022 年 9 月 15 日
回答済み: Walter Roberson 2022 年 9 月 15 日
I have a cell 41 * 41 dimension and I would like to make the values that over 0.5 zeros and the rest of the values keep them without any changes.
Any assistance, please?

採用された回答

Chris
Chris 2022 年 9 月 15 日
編集済み: Chris 2022 年 9 月 15 日
If there's a single value in each cell, you could first convert to a matrix.
A = num2cell(rand(3))
A = 3×3 cell array
{[0.2044]} {[0.1296]} {[0.9499]} {[0.3952]} {[0.7477]} {[0.1062]} {[0.9799]} {[0.7201]} {[0.6477]}
Amat = cell2mat(A);
Amat(Amat>.5) = 0;
A = num2cell(Amat)
A = 3×3 cell array
{[0.2044]} {[0.1296]} {[ 0]} {[0.3952]} {[ 0]} {[0.1062]} {[ 0]} {[ 0]} {[ 0]}

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2022 年 9 月 15 日
newCell = cellfun(@(M) M.*(M<=0.5), YourCell, 'uniform', 0)
However this will fail in locations that contain infinite values.

カテゴリ

Help Center および File ExchangeWorkspace Variables and MAT-Files についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by