WUT_Computer_Science/NotProgramming/ENUME/projectA/task4.m

4 lines
317 B
Mathematica
Raw Normal View History

2021-11-12 09:44:22 +01:00
function [eigenValuesNoShifts, iterationsNoShifts, finalMatrixNoShifts, eigenValuesShifts, iterationsShifts, finalMatrixShifts] = task4(Matrix)
[eigenValuesNoShifts, iterationsNoShifts, finalMatrixNoShifts] = QRNoShifts(Matrix);
[eigenValuesShifts, iterationsShifts, finalMatrixShifts] = QRShifts(Matrix);
end