HP Forums
Matrix Single Row Operations - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Matrix Single Row Operations (/thread-21997.html)



Matrix Single Row Operations - barryrittberg - 07-06-2024 04:06 AM

Question… On the HP Prime, is it possible to do single row matrix reduction operations like can be done on the HP 48G ? Thanks.


RE: Matrix Single Row Operations - ftneek - 07-06-2024 05:21 PM

Yes,

CAS View:
m:=[[1,1],[1,1]]
m[1]*=2 multiplies row 1 by 2

In Home View:
m(2):=m(2)*3 multiplies row 2 by 3

In both cases, the variable m has been updated. There is also the mRow and pivot commands you can look at.


RE: Matrix Single Row Operations - barryrittberg - 07-06-2024 06:24 PM

Thank you very much. This was exactly what I was looking for.