Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Creating a Matrix by Manipulation

1 vue (au cours des 30 derniers jours)
Julian
Julian le 6 Oct 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi, How do you create a matrix that is identical to another matrix except for one entry? For example, if there is a matrix A=[1 2 ; 3 4], how do you create a matrix B=[1 10 ; 3 4]?
Thank you.

Réponses (1)

Joseph Cheng
Joseph Cheng le 6 Oct 2015
you would index the item like
A(1,2) = 10; %A(1,2) says row 1 column 2 of A should = 10

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by