| Original Message (ID '69939') By Bill Simpson: |
| 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 |
|