All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Q: Write code to fit a linear and cubic polynomial for the Cp data. Plot the linear and cubic fit curves along with the raw data points. Title and axes labels are a must, legends could be shown if necessary. Write a code to show splitwise method. Explain the parameters used to measure the fitness characteristics…
ABHITEJA PADMA
updated on 15 Sep 2020
Q: Write code to fit a linear and cubic polynomial for the Cp data.
Plot the linear and cubic fit curves along with the raw data points. Title and axes labels are a must, legends could be shown if necessary.
Write a code to show splitwise method.
Explain the parameters used to measure the fitness characteristics for both the curves.
A: Curve Fitting is a process of constructing a curve or mathematical functions, that has the best fit to a series of data points, possibly subjected to constraints. Curve Fitting includes interpolation and smoothing techniques.
It is highly effective in the mathematical modelling of some natural processes.
The Curve Fit is used for various applications. For example, finding the population in future by keeping the future time and inserting previous data in a country.
Example of a linear polynomial is y = mx + c
Where, 'm' is the slope and 'c' is the intercept. 'y' and 'x' are the dependent or independent variables respectively.
Example of a cubical polynomial is y = ax^3 + bx^2 + cx + d
a, b, c, d are coefficients. 'y' and 'x' are the dependent or independent variables respectively.
Definitions and their syntaxes:
Note: Goodness of fit can be calculated in both ways. First one is by writing the above formulas in code and the second one is calculating directly using curve fitting toolbox. Here, we use curve fitting toolbox to find the goodness of fit by calculating all terms.
Curve fitting toolbox:
In this toolbox, we won't use any 'polyfit' or 'polyval' options for curve fitting. This toolbox is not only used for 2D-plots, it is also used for 3D- plots. When we include values of Z-axis with both X and Y-axis values, it gives 3D-plots.
In this toolbox, we also get values directly. values like coefficients, SSE, R-square, Adjusted R-square, RMSE. These values are shown automatically when we insert values.
There are multiple options in this toolbox. We can also generate code from this toolbox, results can be displayed in workspace etc.
Code procedure:
Code:
clear all
close all
clc
% Loading data from the file manager
cp_data = load('data');
temperature = cp_data(:,1);
cp = cp_data(:,2);
% Finding values for linear equation
% linear equation equation y = ax + b
co_eff1 = polyfit(temperature, cp, 1);
predicted_cp1 = polyval(co_eff1, temperature);
% Finding values for cubic equation
% cubic equation y = ax^3 + bx^2 + cx + d
co_eff3 = polyfit(temperature, cp, 3);
predicted_cp3 = polyval(co_eff3, temperature);
% Plotting linear and cubic fit with original fit
plot(temperature, cp, 'linewidth', 3, 'color', 'r')
hold on
plot(temperature, predicted_cp1, 'linewidth', 3, 'color', 'b')
hold on
plot(temperature, predicted_cp3, 'linewidth', 3, 'color', 'g')
hold off
% Adding labels for both axes
xlabel('temperature [K]')
ylabel('specific heat [kJ/kmol-K]')
title('Plot of curve fitting original vs linear vs cubic')
% Representation of curves
legend('original curve', 'linear fit', 'cubic fit')
Workspace:
Output figure: We get three curves in a single figure.
Splitwise method: In this method, we split the values of temperatures and specific heats into 4 equal parts.
Code:
close all
clear all
clc
% Loading data
cp_data = load('data');
temp = cp_data(:,1);
cp = cp_data(:,2);
% Splitting values from the data into 4 equal parts for linear fit
% Obtaining temperatures
temp11 = cp_data(1:800,1);
temp12 = cp_data(801:1600,1);
temp13 = cp_data(1601:2400,1);
temp14 = cp_data(2401:3200,1);
% Obtaining specific heat values
cp11 = cp_data(1:800,2);
cp12 = cp_data(801:1600,2);
cp13 = cp_data(1601:2400,2);
cp14 = cp_data(2401:3200,2);
% Finding values for linear expressions
coeff11 = polyfit(temp11,cp11,1);
coeff12 = polyfit(temp12,cp12,1);
coeff13 = polyfit(temp13,cp13,1);
coeff14 = polyfit(temp14,cp14,1);
% Finding predicted cp values
predict_cp11 = polyval(coeff11,temp11);
predict_cp12 = polyval(coeff12,temp12);
predict_cp13 = polyval(coeff13,temp13);
predict_cp14 = polyval(coeff14,temp14);
% Splitting values from the data into 4 equal parts for cubic fit
% Obtaining temperatures
temp21 = cp_data(1:800,1);
temp22 = cp_data(801:1600,1);
temp23 = cp_data(1601:2400,1);
temp24 = cp_data(2401:3200,1);
% Obtaining specific heat values
cp21 = cp_data(1:800,2);
cp22 = cp_data(801:1600,2);
cp23 = cp_data(1601:2400,2);
cp24 = cp_data(2401:3200,2);
% Finding values for linear expressions
coeff21 = polyfit(temp21,cp21,3);
coeff22 = polyfit(temp22,cp22,3);
coeff23 = polyfit(temp23,cp23,3);
coeff24 = polyfit(temp24,cp24,3);
% Finding predicted cp values for cubic fit
predict_cp21 = polyval(coeff21,temp21);
predict_cp22 = polyval(coeff22,temp22);
predict_cp23 = polyval(coeff23,temp23);
predict_cp24 = polyval(coeff24,temp24);
% Plotting for original and linear fit with separate linewidths
figure(1)
plot(temp,cp,'r', 'linewidth',3)
hold on
plot(temp11,predict_cp11,'b',temp12, predict_cp12,'b','linewidth',2)
hold on
plot(temp13,predict_cp13,'b',temp14, predict_cp14,'b','linewidth',2)
hold off
% Adding labels
xlabel('temperature [K]')
ylabel('specific heat [kJ/kmol-K]')
title('Plot of curve fitting original vs linear-split')
% Adding names for curves
legend('original', 'linear-split')
% Plotting for original and linear fit with separate linewidths
figure(2)
plot(temp,cp,'r', 'linewidth',3)
hold on
plot(temp21,predict_cp21,'b',temp22, predict_cp22,'b','linewidth',2)
hold on
plot(temp23,predict_cp23,'b',temp24, predict_cp24,'b','linewidth',2)
hold off
% Adding labels
xlabel('temperature [K]')
ylabel('specific heat [kJ/kmol-K]')
title('Plot of curve fitting original vs cubic-split')
% Adding names for curves
legend('original', 'cubic-split')
Workspace:
Output in the command window:
Figure 1: Plot of original vs linear fit by using splitwise method.
Figure 2: Plot of original vs cubic fit by using splitwise method.
To avoid warnings, we use centering and scaling option which can be done in two ways. The first method is manually writing formulas(which are given in the description) in the code and the second method is selecting the option in curve fit toolbox.
Finding the best fit using command fit toolbox.
Using Curve fit toolbox:
To find, the goodness of fit we use curve fit toolbox. We load the data in the main window of MATLAB.
Code in MATLAB editor:
clear all
close all
clc
cftool
cptdata = load('data')
temp = cptdata(:, 1)
cp = cptdata(:, 2)
Curve fitting toolbox: The below figure contains inputs and outputs. Results for the goodness of fit are displayed at the left and curves are displayed at the right bottom.
A plot of original vs linear fit: We can observe that linear fit vs original curve.
Cubic fit vs original fit:
Cubic fit in the toolbox: The below figure contains inputs and outputs. Results for the goodness of fit are displayed at the left and curves are displayed at the right bottom.
Plot for original vs cubic fit: We can observe that cubic fit almost equal to the original curve.
Note:
We know R-square value ranges from 0 to 1. R-square value for the first fit is 0.9249 and for the second is 0.9967. By this, we can ay that cubic fit is good for the above data. In the parameters of the above solution like SSE, R-square, Adjusted R-square, RMSE are calculated for finding the best fit. These parameters help find the best and also errors in the curves.
References: I referred mathsworks site for detail syntaxes and explanation.
https://skill-lync.com/projects/Curve-Fitting-and-criterion-to-choose-best-fit-41860
https://skill-lync.freshdesk.com/support/solutions/articles/43000584172
https://en.wikipedia.org/wiki/Curve_fitting
https://en.wikipedia.org/wiki/Linear_regression
Data file: Link for cp and temperature data
Q1: How to make fit perfectly?
A1: To make a fit perfectly, we should use a higher degree polynomial equation. The fit becomes perfect where it is almost equal to the original curve.
Q2: How to get the best fit?
A2: Use centering and scaling to make the best fit. By using values like SSE, R-square, Adjusted R-square, RMSE we can find the best fit. By reducing errors we can find best. We can also use splitwise method. Minimising distance between two curves also can be done to make the fit better.
Q3: What could be done to improve cubic fit?
A3: Using centering and scaling option we improve cubic fit. This can be done by using the formula in code or using an option in the toolbox.
Points to remember:
Errors and rectification:
Conclusion: Therefore, the best fit is calculated and represented by using various commands. If we increase the degree of polynomial the more perfect fit for the data we get.
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 11 - Final project
Aim: To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy. Objective: 1.To Creation of CAD model considering Class A surface, Nominal thickness and Attachment strategy.2.Create thickened part using master section for reference3.Create the mounting features as per design guidelines…
20 Dec 2021 10:17 AM IST
Week 9 - Project - Master Section Development
Aim : Design B-Pillar through master section Development. Step 1 : Create tooling axis. For creating the tooling axis first we extract this 4 boundries. Took a point between this 2 lines. then draw a bisecting line between this two line by using point. again bisect the remaining two lines. and finally bisect the resultant…
20 Dec 2021 10:10 AM IST
Week 9 - Project 1 - Door Applique Design with Engineering Features
Aim:Create the door applique plastic component,create tooling axis,Heat stakes & locators by using class A surface. Create tooling axis Make a close body by using Class A surface Create adrawing for 4 way locator Then pad the $ way locator sketch. After that give the thicken command to class A surface Give…
20 Dec 2021 10:02 AM IST
Week 9 - Attachment Feature Creation - Challenge 2
Aim: To create a screw boss and dog house for the centre console coin holder by considering design rules. General Guidelines for the creation of Bosses: Draft - 0.5 degrees on walls of boss Thickness - Typically 40%* of the nominal wall at the base. Height to Diameter Ratio…
04 Oct 2021 05:53 PM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.