Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7621769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:16:39+00:00 2026-05-31T04:16:39+00:00

This is matrix product which saves the answer in C , such that C=A*B

  • 0

This is matrix product which saves the answer in C, such that C=A*B. So why won’t the C values change?

It uses special way that it calculates each column, because we want to use this method in Parallel programming such that each column evaluated in a single thread. I have tested something like this in pascal before, but in C# every thing is wrong.

Note: This is for homework and there is no parallel in this code yet.

class Program
{
    private static int n = 2;
    static int[,] A = new int[n, n];
    static int[,] B = new int[n, n];
    static int[,] C = new int[n, n];
    private static void Main(string[] args)
    {
        A[0, 0] = 2; A[0, 1] = 3;
        A[1, 0] = 5; A[1, 1] = 1;

        B[0, 0] = 3; B[0, 1] = 0;
        B[1, 0] = 1; B[1, 1] = 0;

        C[0, 0] = 0; C[0, 1] = 0;
        C[1, 0] = 0; C[1, 1] = 0;

        //Calculation 
        for (int z = 0; z < n; z++)
        {
            ComputeColumn(z);
        }
        PrintAnswer(C);
        Console.ReadKey();
    }
    private static void ComputeColumn(int n)
    {
        for (int i = 0; i < n; i++)
        {
            for (int k = 0; k < n; k++)
            {
                C[i, n] += (A[i, k] * B[k, n]);
            }
        }
    }
    private static void PrintAnswer(int[,] what)
    {
        for (int i = 0; i < n; i++)
        {
            for (int j = 0; j < n; j++)
            {
                Console.Write(what[i, j] + " ");
            }
            Console.WriteLine();
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T04:16:41+00:00Added an answer on May 31, 2026 at 4:16 am

    Try renaming the multiple uses of n

    private static int n = 2;
    ComputeColumn(int n)
    

    to something more meaningful like

    private static int NumberOfColumns = 2;
    ComputeColumn(int currentColumn)
    

    I think this will bring the problem to light fairly quickly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just came a cross this nice code that makes this scatter matrix plot:
What is the best way to achieve this exclusion matrix via query. There are
This matrix transposition function works, but I'm trying to understand its step by step
According to this feature matrix , Visual Studio 2010 Premium (RC) includes static code
I have a function like this: MyFunction(double matrix[4][4]) {/*do stuff*/} I am calling this
This is my template matrix class: template<typename T> class Matrix { public: .... Matrix<T>
check this example: > a = matrix(1:9, nrow = 3, ncol = 3, dimnames
If I have this: A * f = g; A: upper triangular matrix (n
Okay this is werid, i keep getting the error, randomly. ValueError: matrix must be
I'm declaring an instance of a class like so: Matrix m; This appears to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.