Combining graphs in Mathematica
Posted
by pizziaolo
on Stack Overflow
See other posts from Stack Overflow
or by pizziaolo
Published on 2010-05-24T01:48:02Z
Indexed on
2010/05/24
1:50 UTC
Read the original article
Hit count: 254
mathematica
Any idea how I can overlay the following two functions to compare them?
ln[1]:= p1 = Plot[(E^((Pi/6)^(1/3)/x) (Pi/6)^(2/3))/((-1 + E^((Pi/6)^(1/3)/x))^2 x^2), {x, -2.2, 2.2}]
ln[2]:= p2 = Plot[(E^((Pi/6)^(1/3)/t) (Pi/6)^(2/3))/((-1 +
E^((Pi/6)^(1/3)/t))^2 t^2), {t, 0, 2.0}]
When I try Show[p1,p2] it doesn't work
© Stack Overflow or respective owner