Say I'm trying to make a simple multiplication table and used
Table[i"x"j"="i*j,{i,1,9},{j,1,9}]
I'm trying to make it so that I can get a table of equations, but Mathematica keeps simplifying it so that 1x2 = 2 becomes 4=x.
|
Say I'm trying to make a simple multiplication table and used
I'm trying to make it so that I can get a table of equations, but Mathematica keeps simplifying it so that |
||||
|
You can use
|
|||
|
Remember to convert your numbers to strings ( For example:
|
||||
|
|
|
Here's a variant using
|
|||
|
|
|
|
||||
|
|
|
|
|||
|
|
ToStrings andStringJoins thrown in to do it right. Try:Table[ToString@i <> "x" <> ToString@j <> "=" <> ToString[i j], {i, 1, 9}, {j, 1, 9}]– rm -rf♦ Sep 29 '12 at 23:14