| 1024 | |
| 1025 | |
| 1026 | static double extsignbdsqr(double a, double b) |
| 1027 | { |
| 1028 | double result; |
| 1029 | |
| 1030 | if( ap::fp_greater_eq(b,0) ) |
| 1031 | { |
| 1032 | result = fabs(a); |
| 1033 | } |
| 1034 | else |
| 1035 | { |
| 1036 | result = -fabs(a); |
| 1037 | } |
| 1038 | return result; |
| 1039 | } |
| 1040 | |
| 1041 | |
| 1042 | static void svd2x2(double f, |
no outgoing calls
no test coverage detected