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