Lines Matching refs:coordinates
2665 coordinates. Both inputs must have the same dimension.
2762 double *coordinates = coord_on_stack;
2765 coordinates = (double *) PyObject_Malloc(nargs * sizeof(double));
2766 if (coordinates == NULL) {
2774 coordinates[i] = x;
2780 result = vector_norm(nargs, coordinates, max, found_nan);
2781 if (coordinates != coord_on_stack) {
2782 PyObject_Free(coordinates);
2787 if (coordinates != coord_on_stack) {
2788 PyObject_Free(coordinates);
2796 "hypot(*coordinates) -> value\n\n\
2800 sqrt(sum(x**2 for x in coordinates))\n\