Question

Use MATLAB to fit the to the following data, find the values of a, b, and...

Use MATLAB to fit the y equals a x squared plus b sin left parenthesis x right parenthesis plus c e to the power of x to the following data, find the values of a, b, and c using least square method. Use fprintf command to write the values of a, b, c (no plot is needed, just the value of coefficients).Upload your MATLAB code and values of a, b, and c the box bellow.

x = [-0.6 -0.4 -0.2 0 0.2 0.4 0.6]

y = [0.956 -0.013 -1.01 -2.001 -2.99 -3.98 -4.97]

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

Matlab Code:

x = [-0.6 -0.4 -0.2 0 0.2 0.4 0.6];
y = [0.956 -0.013 -1.01 -2.001 -2.99 -3.98 -4.97];
z=x.^2; w=sin(x); t=exp(x); % define transformed variables in x
A=[z.' w.' t.']; % build system matrix
b=A\y.' % solve the system

Output:

b =

1.0128
-2.9877
-1.9995

which are the required coeffcients a,b,c.

a = 1.0128 , b = -2.9877 and c = -1.9995

Add a comment
Know the answer?
Add Answer to:
Use MATLAB to fit the to the following data, find the values of a, b, and...
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
  • a) Use MATLAB to find the Fourier Transform F(w) of the following function f(t). b) Plot...

    a) Use MATLAB to find the Fourier Transform F(w) of the following function f(t). b) Plot F(w). Express the x-axis in [Hz]. Plot for f = -8Hz to 8Hz. f(t) = cos(27 (34))e-**" 0.8 0.6 0.4 0.2 f(t) appears to oscillate at 3 cycles/sec 0 -0.2 -0.4 -0.6 0.8 -1 2 -1.5 -0.5 0 0.5 1 1.5 2

  • Design a MATLAB system to generate 'a' and 'b' coefficients of a 2nd order band-pass filter with ...

    Design a MATLAB system to generate 'a' and 'b' coefficients of a 2nd order band-pass filter with center frequency (oo) and a 3dB bandwidth (BW) using the following statement. A(Z)-12 x li-β(11a)riaz-21 , where: β-cos(w) , and cos(BW) 2α 1+α2 The following is one possible scenario, but you are free to use a different one Example (highlighted is user input Enter PB Center Frequency Enter PB Bandwidth 0.3 0.2 This procedure generates two alpha values Alphal- 1.962611 Alpha2 - 0.509525...

  • PLZ shows you Matlab Code X(t) 2 2 46 1. compute the Fourier Series coefficients, ck...

    PLZ shows you Matlab Code X(t) 2 2 46 1. compute the Fourier Series coefficients, ck for the signal x(t) 2. plot magnitude of c and the phase of ck in separate plots (use subplot command) plot the Fourier Series coefficients for the square wave signal: ck(12/9) sinc(2"k/3)

  • 5. Linearize the following model to fit the data points in the table below: у 3ахеbx...

    5. Linearize the following model to fit the data points in the table below: у 3ахеbx 0.1 0.2 0.4 0.6 0.9 1.3 1.5 1.7 1.8 х 0.75 1.25 1.45 1.25 0.85 0.55 0.35 0.28 0.18 У (a) Use the least squares approach to calculate a and b (b) Plot the data points and regression model and calculate r2

  • Please provide MATLAB code and plot, about system response. Will thumbs up. Thanks. Question 1: MATLAB contains a built-...

    Please provide MATLAB code and plot, about system response. Will thumbs up. Thanks. Question 1: MATLAB contains a built-in function called conv which performs the convolution of two vectors: >> help conv conv Convolution and polynomial multiplication. C - conv(A, B) convolves vectors A and B. The resulting vector is length MAX ([LENGTH (A)+LENGTH (B)-1, LENGTH(A),LENGTH (B) 1) If A and B are vectors of polynomial coefficients, convolving them is equivalent to multiplying the two polynomials. Compute the system response...

  • Matlab: a) Write a program to compute the first-degree and third-degree polynomials that fit the data,...

    Matlab: a) Write a program to compute the first-degree and third-degree polynomials that fit the data, displaying the polynomial coefficients. Remember to include text to describe the displayed coefficients. (b) Compute and display (including what the information is) the sum of the squares for each curve fit. (c) Plot the data and the two curve fits on a single plot, for 101 values of A in the range 0 ? A ? 9. Choose different line styles for each curve...

  • solve it using the equation (6-41) on MATLAB. Use Matlab software to plot the following equation...

    solve it using the equation (6-41) on MATLAB. Use Matlab software to plot the following equation 6-44 from the text book Let Vo = 50, R = 10 12, rl = 112, and D is variable, OsDs 1 D (a) Efficiency vs. D 1.0 Ideal 0.8 0.6 Efficiency Nonideal 0.4 0.2 0 0.2 1 0.4 0.6 0.8 1.0 D (6) Figure 6-10 Boost converter for a nonideal inductor. (a) Output voltage; (b) Boost converter efficiency. P V2/R n = (6-43)...

  • Use matlab a) Create a simulated data set b) Create a set of plots to determine...

    Use matlab a) Create a simulated data set b) Create a set of plots to determine the best transformation to linearize the data c) Fit a first order polynomial (y mx + b) to the linearized data to find the constants m and b d) Reconstruct the original equation from m and b in the linear fitted polynomial e) Plot the fitted equation. Radioactive decay is modeled by the equation: rt where A the amount of mass as a function...

  • For this In-Class Exercise, you are asked to build a MATLAB code that makes a few...

    For this In-Class Exercise, you are asked to build a MATLAB code that makes a few assignment statements and a logical test with random numbers. To answer this ICE, you will need to upload a screenshot of your successful run showing ALL of the outputs. Remember to use good programing skills for the code. For your outputs: If your output for a step below is a single value, use a command similar to:fprintf(‘Question 5 answer: %4.3f \n,A) or fprintf(‘Question 5...

  • 1. Perform the following operations in MATLAB a. Use diff to find the derivative of y...

    1. Perform the following operations in MATLAB a. Use diff to find the derivative of y = cx2 and use subs to evaluate the resulting function at x = 10 and c = 2.5. Solve dy/dt = The frame shown in the figures below has a load P-1000 lb applied at an angle α-30 degrees. The frame dimensions das and dAD are 16" and 12", respectively. Assuming the surface at each support is frictionless, the following equations can be developed...

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
ADVERTISEMENT