Search:

Type: Posts; User: shivamchauhan

Search: Search took 0.15 seconds.

  1. Re: Having problem in matrix multiplication....

    public class ArrayMultiplication
    {
    public static void main(String s[])
    {
    int rows1=Integer.parseInt(s[0]);
    int columns1=Integer.parseInt(s[1]);
    int rows2=Integer.parseInt(s[2]);
    int...
  2. Replies
    0
    Views
    2,540

    Inverse of a Matrix problem

    I am trying to make a code for finding out the inverse of a matrix but something is wrong....can anybody please help me with this...Here's the code:


    import java.util.Scanner;
    public class...
Results 1 to 2 of 2