@@ -267,11 +267,11 @@ namespace oneapi {
267
267
mgenfloat norm(const mgencomplex& x);
268
268
269
269
mgencomplex polar(const mgenfloat& rho, const mgenfloat& theta);
270
- mgencomplex polar(const mgenfloat& rho, const genfloat& theta = 0);
271
- mgencomplex polar(const genfloat& rho, const mgenfloat& theta);
270
+ mgencomplex polar(const mgenfloat& rho, genfloat theta = 0);
271
+ mgencomplex polar(genfloat rho, const mgenfloat& theta);
272
272
273
273
mgencomplex pow(const mgencomplex& x, const mgenfloat& y);
274
- mgencomplex pow(const mgencomplex& x, const genfloat& y);
274
+ mgencomplex pow(const mgencomplex& x, genfloat y);
275
275
mgencomplex pow(const gencomplex& x, const mgenfloat& y);
276
276
277
277
mgencomplex pow(const mgencomplex& x, const mgencomplex& y);
@@ -280,7 +280,7 @@ namespace oneapi {
280
280
281
281
mgencomplex pow(const mgenfloat& x, const mgencomplex& y);
282
282
mgencomplex pow(const mgenfloat& x, const gencomplex& y);
283
- mgencomplex pow(const genfloat& x, const mgencomplex& y);
283
+ mgencomplex pow(genfloat x, const mgencomplex& y);
284
284
285
285
mgencomplex proj(const mgencomplex& x);
286
286
mgencomplex proj(const mgenfloat& x);
@@ -340,13 +340,13 @@ mathematical operation.
340
340
|Compute the squared magnitude for each complex number in marray x.
341
341
|`mgencomplex polar(const mgenfloat& rho, const mgenfloat& theta)`
342
342
|Construct an marray, elementwise, of complex numbers from each polar coordinate in marray rho and marray theta.
343
- |`mgencomplex polar(const mgenfloat& rho, const genfloat& theta = 0)`
343
+ |`mgencomplex polar(const mgenfloat& rho, genfloat theta = 0)`
344
344
|Construct an marray, elementwise, of complex numbers from each polar coordinate in marray rho and scalar theta.
345
- |`mgencomplex polar(const genfloat& rho, const mgenfloat& theta)`
345
+ |`mgencomplex polar(genfloat rho, const mgenfloat& theta)`
346
346
|Construct an marray, elementwise, of complex numbers from each polar coordinate in scalar rho and marray theta.
347
347
|`mgencomplex pow(const mgencomplex& x, const mgenfloat& y)`
348
348
|Raise each complex element in x to the power of the corresponding decimal element in y.
349
- |`mgencomplex pow(const mgencomplex& x, const genfloat& y)`
349
+ |`mgencomplex pow(const mgencomplex& x, genfloat y)`
350
350
|Raise each complex element in x to the power of the decimal number y.
351
351
|`mgencomplex pow(const gencomplex& x, const mgenfloat& y)`
352
352
|Raise complex number x to the power of each decimal element in y.
@@ -360,7 +360,7 @@ mathematical operation.
360
360
|Raise each decimal element in x to the power of the corresponding complex element in y.
361
361
|`mgencomplex pow(const mgenfloat& x, const gencomplex& y)`
362
362
|Raise each decimal element in x to the power of the complex number y.
363
- |`mgencomplex pow(const genfloat& x, const mgencomplex& y)`
363
+ |`mgencomplex pow(genfloat x, const mgencomplex& y)`
364
364
|Raise decimal number x to the power of each complex element in y.
365
365
|`mgencomplex proj(const mgencomplex& x)`
366
366
|Compute the projection for each complex number in marray x.
0 commit comments