Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.1K Views
|
1 Reply
|
1 Total Like
View groups...
Share
Share this post:

Plot Bessel times trigonometric function in 3D

Posted 10 years ago

Dear all

Please I need to solve this plot in 2D and 3D

I would like to get this function

 BesselJ[0, r] BesselJ[1, r] (Cos[A  -  B] )

where r = sqrt[ x^2 + y^2] and the parameter A and B are angles

In advance thanks,

POSTED BY: Irving Rondon

This is really "look it up in docs" type of question. Have you tried looking at the examples and reusing the code for example HERE? Please before asking search the documentation for examples - you will find that Wolfram Language documentation system is very helpful.

BTW if A and B just constants they just rescale the plot.

Plot3D[
 BesselJ[0, Sqrt[x^2 + y^2]] BesselJ[1, Sqrt[x^2 + y^2]] ,
 {x, -5, 5}, {y, -5, 5},
 PlotPoints -> 50,
 ColorFunction -> "Rainbow",
 PlotStyle -> Opacity[0.8]]

enter image description here

POSTED BY: Sam Carrettie
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard