LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
thirdparty
libQBD
+libqbd
parse_approx_type.m
1
function max_degree = parse_approx_type(approx_type)
2
raw_value = uint32(approx_type);
3
max_degree = double(bitand(raw_value, uint32(2^24 - 1)));
4
max_degree = min(max_degree, libqbd.get_max_factor());
5
end
Generated by
1.9.8