Question

B.1 Write a MATLAB user-defined function for interpolation with linear splines Name the function Yint = Linear Splines, y, ri

0 0
Add a comment Improve this question Transcribed image text
Answer #1

The code is shown. The functions f1 f2 f3 are three splines for which function is interpolated. x and y are sample points

clc;clear all
x=[8 11 15 18];
y=[5 9 10 8];
yint=LinearSpline(x,y,12.7)
x1=8:0.01:11;
xi=12.7;
f1=(-5/3).*(x1-11)+(9/2).*(x1-8);
x2=11:0.01:15;
f2=(-9/4).*(x2-15)+(10/4).*(x2-11);
x3=15:0.01:18;
f3=(-10/3).*(x3-18)+(8/3).*(x3-15);
plot(x,y,'*',xi,yint,x1,f1,x2,f2,x3,f3)
legend('Points','Interpolated point','Spline 1','Spline 2','Spline 3')

function yint=LinearSpline(x,y,xint)
n=length(x);
for(i=1:(n-1))
if( xint>x(i) && xint<x(i+1))
a=i;
break
end
end
yint=(xint-x(a+1))/(x(a)-x(a+1))*y(a)+(xint-x(a))/(x(a+1)-x(a))*y(a+1);
end

yint = 9.4250 clc;clear all X=[8 11 15 18]; y=[5 9 10 8]; yint=Linear Spline(x,y,12.7) x1=8:0.01:11; xi=12.7; f1=(-5/3). *(x1 Figure File Edit View Insert Tools Desktop Window Help * Points Interpolated point Spline 1 Spline 2 Spline 3 18

Add a comment
Know the answer?
Add Answer to:
B.1 Write a MATLAB user-defined function for interpolation with linear splines Name the function Yint =...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • IN MATLAB Write a MATLAB function that can be used by a user to perform polynomial...

    IN MATLAB Write a MATLAB function that can be used by a user to perform polynomial interpolation using Lagrange Interpolation Method on a set of data. You should name your function as YourInitials_Lagrange_interpolation. 1. FUNCTION INPUT: . The input data pairs x and f(x) should be expressed as vectors and are used to construct the interpolation polynomials The interpolating data points/value The order of interpolating polynomials to be used. For this project you code should handle first order, second order...

  • Using MATLAB Linear Interpolation: The following equation illustrates how to calculate an output for any input,...

    Using MATLAB Linear Interpolation: The following equation illustrates how to calculate an output for any input, using linear interpolation. The input must be within the bounds of the data set. The constants come from the data set; they are the nearest data points that bound the original input. (constants from data set--> y1, x1, y2) (output--> y) (input--> x) Create a MATLAB function file that calculates the linearly interpolated y-value (output) provided an x-value (input). The function should linearly interpolate...

  • please solve in matlab 1[35p) Write a user-defined MATLAB function that determines the unit vector in...

    please solve in matlab 1[35p) Write a user-defined MATLAB function that determines the unit vector in the direction of the line that connects two points (A and B) in space. For the func- tion name and arguments, use n = unitvec (A,B). The input to the function are two vectors A and B, each with the Cartesian coordinates of the corre- sponding point. The output is a vector with the components of the unit vector Join the direction from A...

  • Question 1: Creating a user-defined function Write a user-defined MATLAB function named PBTask4pl_f.m for the following...

    Question 1: Creating a user-defined function Write a user-defined MATLAB function named PBTask4pl_f.m for the following math function with x the input argument and y the output y(x)=0.8x4-13x2-5x The function should work for x being a scalar or a vector. Write a script file named PBTask4pl.m to a) Use the function to calculate y(3) and y(5) and display the results in command window b) Use the function to make a plot of the function y(x) for -5:5: x 5:5. Label...

  • Matlab code for this problem. 1[35pl Write a user-defined MATLAB function that determines the unit vector...

    Matlab code for this problem. 1[35pl Write a user-defined MATLAB function that determines the unit vector in the direction of the line that connects two points (A and B) in space. For the func- tion name and arguments, use n = unitvec (A,B). The input to the function are two vectors A and B, each with the Cartesian coordinates of the corre- sponding point. The output is a vector with the components of the unit vector in the direction from...

  • MATLAB Problem HW7P2 (20 points) (5 pts) Write a user-defined MATLAB function called HW7P2_fn for the...

    MATLAB Problem HW7P2 (20 points) (5 pts) Write a user-defined MATLAB function called HW7P2_fn for the following math function 3 o-0.47x The input to the function is x and the output is y. Write the function such that x can be an array (use element-by-element operations) (15 pts) Use the function in (a) the command window to calculate y(-2) and y(5) (b) a script file HW7P2.m to determine y(x) for 0.001 Sx S 10 with 1000 points. Hint: Use the...

  • Matlab Linear Interpolation MATLAB interpolation 5 points Linear interpolation can be defined by the following formula:...

    Matlab Linear Interpolation MATLAB interpolation 5 points Linear interpolation can be defined by the following formula: Consider the data set 0:0.2:1.0; cos( x ); x = y = Using any means available to you, estimate the value ystar at xstar 0.35 using linear interpolation. Include five decimal places of precision (the output using format short, ystar

  • Please use matlab cars. Answer: Function file; Command Window: 5.4 Write a user-defined function that plots...

    Please use matlab cars. Answer: Function file; Command Window: 5.4 Write a user-defined function that plots a circle given the coordinates of the center and the radius. For the function name and arguments use circleplot(x,y,R). The input arguments are the and y coordinates of the center and the radius. Use linspace to generte the angle from 0 to π with 100 points. (Hint: the circle equation: x+Rcos and yy-yRsin 0.) This function has no output arguments. Plot the circle using...

  • Solve in Matlab by using Script file: Problem 4: Write a user-defined MATLAB unction that calculates...

    Solve in Matlab by using Script file: Problem 4: Write a user-defined MATLAB unction that calculates the determinant of a 3x3 matrix by using the formula: A22 A23 11 A32 A33 A23 A12 A31 A33 21 A For the function name and arguments use d3-det3by3 (A), where the input argument A is the matrix and the output argument d3 is the value of the determinant. Write the code of det3by3 such that it has a subfunction that calculates the 2x2...

  • matlab 1. Write a MATLAB user-defined function that finds the largest element(s) of a matrix. Name...

    matlab 1. Write a MATLAB user-defined function that finds the largest element(s) of a matrix. Name the function [max_value, max_index] - LASTNAMES matrix max (x), where input argument x is a vector or matrix (not a scalar), and the outputs are the maximum value(s) and indexes of the maximum value(s) of the mput x. Do not use MATLAB functions max() or find(). Use loops and if branches to determine the maximum elements of matrix. Check for correct number and valid...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT