フィルターのクリア

How to replace value with zero to match the size of array

1 回表示 (過去 30 日間)
Med Future
Med Future 2022 年 3 月 1 日
回答済み: KSSV 2022 年 3 月 1 日
Hello everyone, I hope you are doing well.
I have the dataset which is shape of 250x1000, i want to get only first 20 values from each row and replace all other value with zero
how can i do that in matlab

採用された回答

KSSV
KSSV 2022 年 3 月 1 日
Let A be your 250x1000 array.
B = zeros(size(A)) ; % initialize the zero matrix
B(:,1:20) = A(:,1:20) ; % replace first twenty values from each row

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by