Thursday, November 13, 2025
HomeLanguagesJavascriptTensorflow.js tf.transpose() Function

Tensorflow.js tf.transpose() Function

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

The tf.transpose() function is used to perform a regular matrix transpose operation on the specified 2-D input tensor.

Syntax:

tf.transpose (x)

Parameters: This function accepts a parameter which is illustrated below:

  • x: The specified input tensor to transpose.

Return Value: It returns a tensor as the output for the transpose operation.

Example 1:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing a tensor of matrix along with
// its dimension
const a = tf.tensor2d([2, 4, 6, 8], [2, 2]);
  
// Calling the .transpose() function over the
// above tensor as its parameter
a.transpose().print();


Output:

 Tensor
   [[2, 6],
    [4, 8]]

Example 2:

Javascript




// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Using some tensor of matrix along with its dimensions
// as the parameter for .transpose() functions
tf.tensor2d([1, 3, 5, 7, 9, 11], [2, 3]).transpose().print(); 
tf.tensor2d([1, 3, 5, 7, 9, 11], [3, 2]).transpose().print();


Output:

Tensor
   [[1, 7 ],
    [3, 9 ],
    [5, 11]]
Tensor
   [[1, 5, 9 ],
    [3, 7, 11]]

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

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
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11983 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6835 POSTS0 COMMENTS
Umr Jansen
6838 POSTS0 COMMENTS