Link to home
Start Free TrialLog in
Avatar of Louis_DePage
Louis_DePage

asked on

I don't understand my exercise

My exercises is:

Make matrix operations : addition, subtraction, multiplication and division. You may limit the maximum dimension of the matrix.

what does thaht mean, i have to use array(s)
but i just don't understand the question
could someone help me ??
thanks in advance

Louis
Avatar of Louis_DePage
Louis_DePage

ASKER

don't give me any code
just a hint
a translation to normal english
thanks
Avatar of Mike McCracken
Do you know what a Matrix is (not the movie) but in mathematical terms?

What Pascal data structure does a matrix look like?

How do you add one matrix to another?

Your best bet is the next day in class, get your hand in the air and ask questions.  Get your instructor to explain the assignment.
If you ask the right questions he might even do one of the parts for you.

mlmcc
well it's not an class assignment or something in a group it's just a exercise i found on the web
and no i don't know what it is about;
could you brievely explain my what a matrix is ???
or what i should know to solve tis problem
thanks in advance

Louis
A matrix is a mathematical entity that is useful in solving a variety of problems.  Is has rows and columns of numbers

  2    2
  3    4

This is  a 2x2 matrix


Adding is done by elements

  a  b           e  f         a+e   b+f
  c  d    +     g  h   =   c+g   d+h


Subtracting is similar.

mlmcc
okay now I know what matrices is all about
i know how to do the matrix operations
but which numbers should i place in my matrix and with what for matrix should i do the matrix operations ???
is the choice of the matrixes op to me ?
i know perfectely how to play around with arrays and so on
just which matrix should i take in this exercises ???

thanks
louis
should i ask the user the matrixes he wants ?
ASKER CERTIFIED SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Glad I could help

mlmcc