mirror of
https://github.com/jlengrand/LAFF.git
synced 2026-03-10 08:31:21 +00:00
33 lines
772 B
Matlab
Executable File
33 lines
772 B
Matlab
Executable File
function [ A_out ] = Set_to_zero_unb_var2( A )
|
|
|
|
[ AT, ...
|
|
AB ] = FLA_Part_2x1( A, ...
|
|
0, 'FLA_TOP' );
|
|
|
|
while ( size( AT, 1 ) < size( A, 1 ) )
|
|
|
|
[ A0, ...
|
|
a1t, ...
|
|
A2 ] = FLA_Repart_2x1_to_3x1( AT, ...
|
|
AB, ...
|
|
1, 'FLA_BOTTOM' );
|
|
|
|
%------------------------------------------------------------%
|
|
|
|
a1t = laff_zerov( a1t );
|
|
|
|
%------------------------------------------------------------%
|
|
|
|
[ AT, ...
|
|
AB ] = FLA_Cont_with_3x1_to_2x1( A0, ...
|
|
a1t, ...
|
|
A2, ...
|
|
'FLA_TOP' );
|
|
|
|
end
|
|
|
|
A_out = [ AT
|
|
AB ];
|
|
|
|
return
|