| Author |
Comment/Response |
Bill Simpson
|
10/18/12 1:36pm
In Response To 'Re: Re: Mathematica graphics' --------- You can combine multiple graphs with Show.
Show[{
ListPlot[{{1,1}, {2,3}, {3,1}}, Joined -> True],
ListPlot[{{4,4}, {3,3}, {2,4}}, Joined -> True]
}]
You can select portions of a matrix to use with ListPlot
http://reference.wolfram.com/mathematica/tutorial/GettingAndSettingPiecesOfMatrices.html
URL: , |
|