mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 20:43:06 +02:00
4 lines
317 B
Mathematica
4 lines
317 B
Mathematica
|
|
function [eigenValuesNoShifts, iterationsNoShifts, finalMatrixNoShifts, eigenValuesShifts, iterationsShifts, finalMatrixShifts] = task4(Matrix)
|
||
|
|
[eigenValuesNoShifts, iterationsNoShifts, finalMatrixNoShifts] = QRNoShifts(Matrix);
|
||
|
|
[eigenValuesShifts, iterationsShifts, finalMatrixShifts] = QRShifts(Matrix);
|
||
|
|
end
|