mirror of
https://github.com/jlengrand/LAFF.git
synced 2026-03-10 08:31:21 +00:00
10 lines
226 B
Matlab
Executable File
10 lines
226 B
Matlab
Executable File
A = randi( [ -2, 2 ], 4, 4 )
|
|
x = randi( [ -2, 2 ], 4, 1 )
|
|
|
|
if ( isequal( Trmv_un_unb_var1( A, x ), triu( A ) * x ) )
|
|
disp( 'Trmv_un_unb_var1 appears to be correct' )
|
|
else
|
|
disp( 'Trmv_un_unb_var1 has a problem' )
|
|
end
|
|
|