This Question Is Answered:
 How Do You Make A Program Regarding Two-Array Functions?
I'm a com.sci student, then I really feel it's hard making a program regarding in two-array functions. What am I going to do?
 23 Jan 2008 01:13
 Flag
 // sample c++ Function to add two matrix arrays and place the result in a third. Compile with MS visual C++

#include "stdafx.h"
#include "stdio.h"
#include "conio.h"
#include "ctype.h"
//
using namespace System;
void MatrixAdd(double C[3][3], double A[3][3], double B[3][3]);
void PrintMatrix(double M[3][3]);
//
int main(array ^args)
{
// define matrices and assign some values
double M1[3][3] = { {1,2,-4}, {0,1,1}, {2,-7,3} };
double M2[3][3] = { {0,1,1}, {2,9,4}, {-1,-2,1.3} };
double M3[3][3];

//Add the matrices and display
Console::WriteLine("Sample Matrix Addition");
MatrixAdd(M3,M1,M2);
PrintMatrix(M3); //show M3 on the screen so we can test and see if addition worked;
}
// Here is the function that:
//calculate C=A+B, where A and B are given square matrices of size 3x3
void MatrixAdd(double C[3][3], double A[3][3], double B[3][3])
{
for (int row=0; row < 3; ++row)
{
for (int col=0; col < 3; ++col)
{
C[row][col] = A[row][col]+B[row][col];
}
}
}
// Display a matrix on the screen
void PrintMatrix(double M[3][3])
{
for (int row=0; row < 3; ++row)
{
for (int col=0; col < 3; ++col)
{
printf("%f, ",M[row][col]);
}
printf("\n");
}
}
Unrated

1 ratings
  30 Jan 2008 13:11
 Flag
 Thanks for the Wow
by   jnawrocki   31 Jan 2008 12:07    
Comment
  
Comment
  

1000 words left

    


Blurtit Tools:  Email to a Friend    Bookmark this page
What are the
characteristics of a
web-based database
design?
What Is A Table? Can You
Describe Different Types
Of Tables Used In
Database?
What Is Data Flow
Diagram?
How To Write Order Of
Events In Microsoft Word?
How can a better database
design assure accurate
information?
What is database?
I have to write a SQL
query to get some rows
into dataTable columns.
There are three...
What are the major data
languages of the database
management system?
Can I Play The Sims
Online Right Now For
Free?
What is a database?
My Blurtit
My Profile
My Questions
My Answers
Blurtit Features
Ask a Question
Answer a Question
Search an Answer
Categories
Tools
Link to Blurtit
Add Blurtit to Firefox
Search Engine
See Your Site Here
Link to Blurtit
RSS
Blurtit.com
About Us
Terms & Conditions
Privacy Policy
Contact Us
Advertise With Us
Help
International
 Chinese Site
 Japanese Site
To continue you need to be registered with us first.

I am already a Blurter, and need to login
I am not a Blurter yet, but would like to register