* This function sums the entries in an array **************************************************************************/
| 460 | * This function sums the entries in an array |
| 461 | **************************************************************************/ |
| 462 | void sscale(int n, float alpha, float *x) |
| 463 | { |
| 464 | int i; |
| 465 | |
| 466 | for (i=0; i<n; i++) |
| 467 | x[i] *= alpha; |
| 468 | } |
| 469 | |
| 470 | |
| 471 | /************************************************************************* |
no outgoing calls
no test coverage detected