New Reply

Mathematica Help with Table command and Matrix operations

 
Share Thread
Apr6-12, 04:32 PM   #1
 

Mathematica Help with Table command and Matrix operations


Hi,

I need to generate some data in a Table and then be able to do all kinds of matrix and other mathematical operations on them. Right now I am testing the commands but am unable to get them to work. My table has this extra parenthesis floating around which I'm not sure how to get rid of.

Code:
test = Table[{i^2, y /. Solve[2 y + i == 0]}, {i, 1, 10}]
Code:
 Out[8]={{1, {-(1/2)}}, {4, {-1}}, {9, {-(3/2)}}, {16, {-2}}, {25, {-(5/
    2)}}, {36, {-3}}, {49, {-(7/2)}}, {64, {-4}}, {81, {-(9/
    2)}}, {100, {-5}}}
Code:
test2 = {{1/2, 0}, {0, 1/2}}

Now I am unable to multiply the two Matrices, Test 2x10 and Test2 2x2. I have tried
Code:
test2.test
and also
Code:
test.test2
and neither command works. Also, Test has this additional set of parenthesis around the entries in the second column, for example like this:
Code:
{1, {-(1/2)}}
. I would like to be able to get rid of them if possible.. though I'm not sure if that messes anything up.

Any help will be greatly appreciated. Thanks a lot,
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Apr6-12, 08:59 PM   #2
 
Replace your code with

Code:
test=Table[{i^2,y/.Solve[2 y+i==0][[1]]},{i,1,10}]
New Reply

Tags
mathematica, matrix operations, table

Similar discussions for: Mathematica Help with Table command and Matrix operations
Thread Forum Replies
Controlling Mathematica Through the MS-DOS Command Line in VBA for CST MWS Computers 0
What command to be used in Mathematica Math & Science Software 1
Mathematica, Plot3D command and 3D points Math & Science Software 2
Mathematica - Plot two 2D graphs with different command in one figure Math & Science Software 2
A question about Manipulate command in Mathematica General Math 1