Wednesday, September 17, 2025
HomeLanguagesJavascriptTensorflow.js tf.asin() Function

Tensorflow.js tf.asin() Function

Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment.

The .asin() function is used to find the asin of the stated tensor elementwise.

Syntax:  

tf.asin(x) 

Parameters:  

  • x: It is the tensor input whose asin value is to be computed, and it can be of type tf.Tensor, or TypedArray, or Array.

Return Value: It returns the tf.Tensor object.

Example 1: In this example, we are defining an input tensor of integer type and then printing the asin value of it. For creating an input tensor we are utilizing the .tensor1d() method and in order to print the output we are using the .print() method.  

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements
const y = tf.tensor1d([5, 1, 8, 0]);
  
// Calling asin() method and
// printing output
y.asin().print();


Output:

Tensor
    [NaN, 1.5707964, NaN, 0.0000676]

Example 2: In this example, float type values are considered as tensor input and the parameter is passed directly to the asin function.

Javascript




// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining float values
var val = [1.6, .5, .34];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling asin() method
var res = tf.asin(y)
  
// printing output
res.print();


Output:

Tensor
    [NaN, 0.523645, 0.346944]

Reference: https://js.tensorflow.org/api/latest/#asin

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32299 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6660 POSTS0 COMMENTS
Nicole Veronica
11833 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11895 POSTS0 COMMENTS
Shaida Kate Naidoo
6779 POSTS0 COMMENTS
Ted Musemwa
7050 POSTS0 COMMENTS
Thapelo Manthata
6735 POSTS0 COMMENTS
Umr Jansen
6741 POSTS0 COMMENTS