Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Med Future
Med Future le 1 Mar 2022
Réponse apportée : KSSV le 1 Mar 2022
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

Réponse acceptée

KSSV
KSSV le 1 Mar 2022
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

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by