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

[Program]: Write a PHP program to find the transpose of a matrix #2332

Closed
Tracked by #2319
harshraj8843 opened this issue Oct 11, 2022 · 1 comment · Fixed by #5716
Closed
Tracked by #2319

[Program]: Write a PHP program to find the transpose of a matrix #2332

harshraj8843 opened this issue Oct 11, 2022 · 1 comment · Fixed by #5716
Assignees
Labels
closed closed issues/PRs good first issue Good for newcomers PHP php related program

Comments

@harshraj8843
Copy link
Contributor

harshraj8843 commented Oct 11, 2022

Description

Write a PHP program to find the transpose of a matrix

The transpose of a matrix is an operator which flips a matrix over its diagonal, that is it switches the row and column indices of the matrix by producing another matrix denoted as AT.

Input  :
1 2 3
4 5 6
7 8 9

Output :
1 4 7
2 5 8
3 6 9
How to contribute
  • Save the solution in program/program/find-the-transpose-of-a-matrix/program/find_the_transpose_of_a_matrix.php file
@harshraj8843 harshraj8843 added good first issue Good for newcomers PHP php related labels Oct 11, 2022
@anandfresh anandfresh self-assigned this Mar 22, 2023
@harshraj8843 harshraj8843 transferred this issue from codinasion/codinasion May 28, 2023
@harshraj8843 harshraj8843 changed the title Write a PHP program to find the transpose of a matrix [Program]: Write a PHP program to find the transpose of a matrix May 30, 2023
@BatinSimsek
Copy link
Contributor

!assign

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
closed closed issues/PRs good first issue Good for newcomers PHP php related program
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants