det()
function in R Language is used to calculate the determinant of the specified matrix.
Syntax: det(x, …)
Parameters:
x: matrix
Example 1:
x < - matrix(c( 3 , 2 , 6 , - 1 , 7 , 3 , 2 , 6 , - 1 ), 3 , 3 )
x
det(x)
|
Output:
[, 1] [, 2] [, 3]
[1, ] 3 -1 2
[2, ] 2 7 6
[3, ] 6 3 -1
[1] -185
Example 2:
x < - matrix(c( 3 , 2 , 6 , - 1 , 7 , 3 , 2 , 6 , - 1 ), 3 , 3 )
x
y < - t(x)
y
det(y)
|
Output:
[, 1] [, 2] [, 3]
[1, ] 3 -1 2
[2, ] 2 7 6
[3, ] 6 3 -1
[, 1] [, 2] [, 3]
[1, ] 3 2 6
[2, ] -1 7 3
[3, ] 2 6 -1
[1] -185
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks 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!