필터 지우기
필터 지우기

chebyshev collocation method to solve an eigenvalue problem for coupled equation using collocation points

조회 수: 34 (최근 30일)
i want to find the critical values to an eigenvalue problem using chebyshev collocation method and need to plot the critical curves , neutral curves as well. Also i need to print those values as a grid. How can i get this

채택된 답변

Ayush Anand
Ayush Anand 2023년 8월 28일
Hello Kavitha,
I understand that you want to find the critical values to an eigenvalue problem using Chebyshev collocation method.
In this case, assuming that you have the eigenvalue problem setup in the form of a differential equation or a matrix equation, please follow the steps below.
  1. You can use the “chebpts” function to choose the Chebyshev collocation points, by defining the interval and number of points you want in the parameters.
  2. Next, solve the differential/matrix equation defined in the problem at each of the collocation points; this will result in a system of equations that you can solve for the eigenvalues.
  3. You can use “eig” or “eigs” function in MATLAB to solve the collocation system for the eigenvalues.
  4. For plotting the critical and neutral curves, set a range for the parameter you want to vary, and repeat step 3. Then classify the eigenvalues obtained as critical or neutral depending on your criteria. Store these in a list and plot them against the parameter range specified by you initially.
  5. You can plot the eigenvalues as a grid using the “table” command.
You can refer to the answer below to check an example of how to implement the Chebyshev collocation method:
I hope this helps.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by