Forward Elimination in Python

Опубликовано: 18 Октябрь 2024
на канале: Shameel Abdulla
516
6

Performing forward elimination in Python.
UPDATE: In the video, at 9:35, the operation on the b vector is done after the operation on the A vector. This is wrong. This would mean the the factor calculated would be different, since A has been updated. To avoid this, apply the operation on the b vector first.