I want to plot Sin[a*x] and have used the following code:
Plot[Sin[a*x], {a,0,10},{x, 0, 10}]
But I am not getting any plot. Any Ideas?
I want to plot Sin[a*x] and have used the following code:
Plot[Sin[a*x], {a,0,10},{x, 0, 10}]
But I am not getting any plot. Any Ideas?
Are you looking for something like this?
Manipulate[Plot[Sin[a*x], {x, 0, 10}], {a, 0, 10}]
or this?
Plot[Evaluate@Table[Sin[a*x], {a, 0, 2}], {x, 0, 10}]
f[max_] := Plot[Sin[a*x], {x, 0, max}] Manipulate[f[max], {a, 1, 5}, {max, 10, 20}]. But, that wasn't giving me the desired result either. Didn't understand why though
– Priyesh Sharma
Mar 03 '19 at 16:28
Plot3D[Sin[a*x], {a,0,10},{x, 0, 10}]
Plotdocumentation? – Kuba Mar 03 '19 at 14:37DensityPlot[Sin[a*x], {a, 0, 10}, {x, 0, 10}, PlotLegends -> Automatic, PlotPoints -> 50]– corey979 Mar 03 '19 at 15:08