Effacer les filtres
Effacer les filtres

Creating empty matrix with data in 1 cell

1 vue (au cours des 30 derniers jours)
Ross Thompson
Ross Thompson le 14 Fév 2022
Commenté : VBBV le 15 Fév 2022
I want to generate an empty MATRIX containing all zeros apart from 1 or 2 cells which i want to assign a value to. Currently im using M = zeros(1,100); which generates my empty matrix but im unsure how to then assign a value to one of those cells.

Réponses (1)

VBBV
VBBV le 14 Fév 2022
Modifié(e) : VBBV le 14 Fév 2022
M = zeros(1,100);
M(1,2:3) = 5% say 5
assign value of 5 to elements 2 and 3 in array
  3 commentaires
Ross Thompson
Ross Thompson le 15 Fév 2022
How would this work if the elements wernt next bto each other in the MATRIX?
VBBV
VBBV le 15 Fév 2022
M = zeros(1,100);
M(1,[2:3 10 20 30]) = 5% say 5
Set value of 5 to elements 2,3 10, 20, and 30. By brackets []

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by