Our volunteers haven't translated this article into Català yet. Join us and help get the job done!
This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The static SIMD.%type%.sqrt()
method returns a new instance with the square root of the lane values (see also Math.sqrt()
for the same scalar function).
Syntax
SIMD.Float32x4.sqrt(t) SIMD.Float64x2.sqrt(t)
Parameters
- t
- An instance of a corresponding SIMD type.
Return value
A new corresponding SIMD data type with square root values.
Examples
var a = SIMD.Float32x4(9, 49, 3, 2); SIMD.Float32x4.sqrt(a); // Float32x4[3, 7, 1.7320507764816284, 1.4142135381698608] var b = SIMD.Float64x2(4, 8); SIMD.Float64x2.sqrt(b); // Float64x2[2, 2.8284271247461903]
Specifications
Specification | Status | Comment |
---|---|---|
SIMD The definition of 'SIMDConstructor.sqrt' in that specification. |
Draft | Initial definition. |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support | Nightly build | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | Nightly build | No support | No support | No support |