Filter löschen
Filter löschen

Can somebody tell me what this notation means?

2 Ansichten (letzte 30 Tage)
Ashmika Gupta
Ashmika Gupta am 24 Jun. 2021
Kommentiert: Ashmika Gupta am 24 Jun. 2021
Hi, everyone! I am reading through a textbook which integrates the use of MATLAB and I don't quite understand what this notation means.
K(lm, lm) = K(lm, lm) + k
Any help would be appreciated! Thank you!

Akzeptierte Antwort

Mouhamed Niasse
Mouhamed Niasse am 24 Jun. 2021
Hello,
You're adding 'k' to the value initially stored at the location row 'lm' column 'lm' in the matrix K.
For example,
>> K=ones(3,3)
K =
1 1 1
1 1 1
1 1 1
>> k=5
k =
5
>> K(2,2)=K(2,2)+k
K =
1 1 1
1 6 1
1 1 1

Weitere Antworten (0)

Kategorien

Mehr zu Just for fun finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by