mirror of
https://github.com/jlengrand/LAFF.git
synced 2026-03-10 08:31:21 +00:00
26 lines
607 B
Matlab
Executable File
26 lines
607 B
Matlab
Executable File
function [ A_out ] = ZeroMatrix_unb( A )
|
|
|
|
[ AL, AR ] = FLA_Part_1x2( A, ...
|
|
0, 'FLA_LEFT' );
|
|
|
|
while ( size( AL, 2 ) < size( A, 2 ) )
|
|
|
|
[ A0, a1, A2 ]= FLA_Repart_1x2_to_1x3( AL, AR, ...
|
|
1, 'FLA_RIGHT' );
|
|
|
|
%------------------------------------------------------------%
|
|
|
|
a1 = laff_zerov( a1 );
|
|
|
|
%------------------------------------------------------------%
|
|
|
|
[ AL, AR ] = FLA_Cont_with_1x3_to_1x2( A0, a1, A2, ...
|
|
'FLA_LEFT' );
|
|
|
|
end
|
|
|
|
A_out = [ AL, AR ];
|
|
|
|
return
|
|
|