Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

[Program]: Find the cofactor of a matrix #1723

Open
12 of 20 tasks
harshraj8843 opened this issue Oct 8, 2022 · 0 comments
Open
12 of 20 tasks

[Program]: Find the cofactor of a matrix #1723

harshraj8843 opened this issue Oct 8, 2022 · 0 comments
Labels
auto-track Good First Issue Tracker program

Comments

@harshraj8843
Copy link
Contributor

harshraj8843 commented Oct 8, 2022

Description

Write a program to find the cofactor of a matrix

The cofactor of an element aij of a square matrix A is the determinant of the minor of A obtained by deleting the ith row and jth column of A. The cofactor of a matrix A is the matrix of cofactors of A.

Input  :
1 2 3
4 5 6
7 8 9

Output :
[[-3, 6, -3], [6, -12, 6], [-3, 6, -3]]

Tracking Issues

@harshraj8843 harshraj8843 added the auto-track Good First Issue Tracker label Oct 8, 2022
@harshraj8843 harshraj8843 transferred this issue from codinasion/codinasion May 28, 2023
@harshraj8843 harshraj8843 changed the title Find the cofactor of a matrix [Program]: Find the cofactor of a matrix May 30, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
auto-track Good First Issue Tracker program
Projects
None yet
Development

No branches or pull requests

1 participant