Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7516555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:10:08+00:00 2026-05-30T01:10:08+00:00

I am trying to plot roots of a function that is composed of multiple

  • 0

I am trying to plot roots of a function that is composed of multiple bessel functions being added and multiplied in Matlab. The equation is Jm(omega)*Ik(omega)+Im(omega)*Jk(omega) where Jm is the bessel function of the first kind of order m (besselj). Im is the modified bessel function of the first kind of order m (besseli). For each mode m=o,1,2,…and n=1,2,3… The frequency omega(mn) is the corresponding root of the listed equation. m=0,1,2 n-1,2,3,4. I need to solve the equation for the 12 roots. I am new to Matlab and this is a little out of my league. So far I have this code but I wasn’t sure if I needed the variable omega in the script or not. I have also looked at other people’s questions on the suject but didn’t see any quite like this. The plots I have seen look nothing like mine which tells me I am probably wrong. Thanks for any help.

m=(0:2); k=(1:3); n=(1:4);
Jm=besselj(m,n');
Ik=besseli(k,n');
Jk=besselj(k,n');
Im=besseli(m,n');
g=Jm.*Ik+Im.*Jk
plot(g)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:10:09+00:00Added an answer on May 30, 2026 at 1:10 am

    Plotting

    besselj and besseli take what you call omega as their second parameter, so to plot your function you should try something like

    m=0; k=1; omega=0:0.02:10;
    Jm=besselj(m,omega);
    Ik=besseli(k,omega);
    Jk=besselj(k,omega);
    Im=besseli(m,omega);
    g=Jm.*Ik+Im.*Jk;
    plot(omega,g);
    hold all;
    plot(omega,0,'k');
    axis([min(omega) max(omega) -100 100]);
    

    This shows you that for m=1, k=1 the first zeros are around 3.2, 6.3 and 9.4:

    screenshot matlab figure

    Finding the roots numerically

    You could implement Halley’s method for your function g, similar to how the roots of besselj are determined in the MatlabCentral file linked by Cheery.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to plot the following equation in MATLAB: ratio = sqrt(1+1/(kr)^2) With
Im trying to plot the roots of a polynomial, and i just cant get
I have the following data set that I am trying to plot with ggplot2,
I have a plot (sample code pasted below) that I am trying to add
I'm trying to plot a couple of UnitStep functions, but for some reason, Mathematica
Trying to plot a signal function of 0 and 1, much like the solution
I am trying to plot a ratio but my problem is that when the
I'm trying to plot out GPS data that is given to me in Hour
I am trying to plot some data in Flot that should display x-axis in
I am trying to plot multiple lists in the same plot in Mathematica (ListLinePlot)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.