ebtisam almehmadi - MATLAB Central
photo

ebtisam almehmadi


Last seen: meer dan 3 jaar ago Active since 2021

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 07/21 to 04/25Use left and right arrows to move selectionFrom 07/21Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 Questions
0 Answers

RANK
98.144
of 297.999

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
40.0%

VOTES RECEIVED
0

RANK
 of 20.519

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 160.124

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


I need to fix the code by using for loop to plot the relative error E in 2 norm versus n.
%%%% Taylor ploynomials pn(x) x=2:0.01:3; f = 1./x; p1=1/2.5; p2= 1/2.5 -(4/25)*(x-2.5); p3= 1/2.5 -(4/25)*(x-2.5) + (8/1...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


I'm trying to replace "t" in the code with ti=a + (b−a)*((xi+1)/2) to plot the Lagrange polynomial interpolation with Chebyshev points.
clear n = 8; % the order of the polynomial a = 1; % left end of the interval b = -1; % right end of the interval h = (b - a)...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


I want to modify the code to plot the Lagrange polynomial interpolation with Chebyshev points. Map the n+ 1 Chebyshev interpolation points from [-1,1] to [2,3]
clear n = 3; % the order of the polynomial a = 2.0; % left end of the interval b = 3.0; % right end of the interval h = (b -...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


I'm trying to modify the code to plot the error E for n=1,2,3... I want to use for loop but I'm not sure how to use it. Please help
clear n = 3; % the order of the polynomial a = 2.0; % left end of the interval b = 3.0; % right end of the interval h = (b -...

meer dan 3 jaar ago | 1 answer | 0

1

answer

Question


when I run the code, I only get one plot for f. I need to have a plot for p as well. I need to code this part p(x) =f(x0)l0(x) +f(x1)l1(x) +f(x2)l2(x) to make it works
clear all n = 3; % the order of the polynomial a = 2.0; % left end of the interval b = 3.0; % right end of the interval...

meer dan 3 jaar ago | 1 answer | 0

1

answer