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