No video

Curve Fitting with MATLAB code

  Рет қаралды 34,476

ATTIQ IQBAL

ATTIQ IQBAL

Күн бұрын

The contents of this video lecture are:
📜Contents 📜
📌 (0:05) Introduction to curve fitting
📌 (4:16) Linear Fit, Parabolic Fit, Cubic Fit
📌 (8:35) Example related to curve fitting
📌 (12:10) Developing MATLAB code of curve fitting which can find any type of polynomial fit using given abscissas and ordinates
#curvefitting
#curvefittingcode
#methodofleastsquares
#numericalanalysis
#numericalcomputation

Пікірлер: 50
@AliAkbar-cr7ym
@AliAkbar-cr7ym 3 ай бұрын
Good teacher
@usamaiqbal3130
@usamaiqbal3130 4 жыл бұрын
The best video I have ever seen on youtube. Very Informative
@RamKumar-ve6eo
@RamKumar-ve6eo 3 жыл бұрын
Crystal Clear explanation.
@ZERINSHAIMAMEEM
@ZERINSHAIMAMEEM 3 жыл бұрын
you are life savior :')
@hanslegacy
@hanslegacy 11 ай бұрын
Love from Bangladesh University of Engineering and Technology
@dr.sunilkumar103
@dr.sunilkumar103 2 жыл бұрын
Best explanation sir.
@asifraj321
@asifraj321 2 жыл бұрын
Very nice explanation.Can you make a video on Fourier curve fitting?
@mathecian
@mathecian 4 жыл бұрын
Great dear...
@imtiazshah1775
@imtiazshah1775 3 жыл бұрын
well explained
@RamKumar-ve6eo
@RamKumar-ve6eo 3 жыл бұрын
I'm hoping the next video of curve fitting based on spline function.
@ramakrishnanp.v6551
@ramakrishnanp.v6551 2 жыл бұрын
Huge thanks sir 💗
@malaikawaqar5202
@malaikawaqar5202 3 жыл бұрын
Well explained sir
@fizzaatif286
@fizzaatif286 3 жыл бұрын
Thank you sir.
@jaimecastillo1980
@jaimecastillo1980 2 жыл бұрын
Bro could put subtitles on the video? I wasn't able yo undestane really well what were you saying, also nice video bro, your example was very clear
@ATTIQIQBAL
@ATTIQIQBAL 2 жыл бұрын
Thanks for feedback. At the start i was making videos in urdu language. However, now my latest videos are in English. I will try to put subtitles on my previous videos.
@syedhashimnaqvi3321
@syedhashimnaqvi3321 3 жыл бұрын
Thank you sir❣️
@funwithwaniarumaisaareeba7586
@funwithwaniarumaisaareeba7586 7 ай бұрын
sir why do we have two different values of y against single value of independent variable x=0.7?
@ATTIQIQBAL
@ATTIQIQBAL 7 ай бұрын
Sorry that's a mistake.
@engineervlogs913
@engineervlogs913 Жыл бұрын
your code is giving different coefficient results from the built-in syntax of Matlab( p = fit(x,y,poly3) ). which to trust ?
@ATTIQIQBAL
@ATTIQIQBAL Жыл бұрын
For fit command you have to define polynomial by yourself first. I recommend to use polyfit(X,Y,n) where n is the degree of polynomial
@mohdyusuf5195
@mohdyusuf5195 2 жыл бұрын
Do you have any video on curve fitting using Nonlinear least square method
@umeiransari3507
@umeiransari3507 2 жыл бұрын
sir how do you select previously registered input in the command window, i couldn't do that i had to manually feed the same input again and again to test run it, please let me know
@ATTIQIQBAL
@ATTIQIQBAL 2 жыл бұрын
Use the up key ⬆️ of the keyboard
@muradsaleem9746
@muradsaleem9746 4 жыл бұрын
Sir Interpolation waly topic se kuch questions hain 😔😔
@tsehayenegash8394
@tsehayenegash8394 3 ай бұрын
Nice video but please pload english
@pandohaman1
@pandohaman1 10 ай бұрын
Very helpful Sir 👍 1 question, how to find total error?
@ATTIQIQBAL
@ATTIQIQBAL 10 ай бұрын
I don't understand what do you mean by total error. The one possibility is compute new y1 vector by putting values in the polynomial obtained by curve fitting and then subtract this y1 vector with the original vector y. Now you have error vector on which you could compute different norms. You can search about different norms to pick the required one.
@rogelioisaiasramirezortega6422
@rogelioisaiasramirezortega6422 3 жыл бұрын
Good video ! One question... how I put more than 2 curve fitting in the same figure . I mean, matlab show you , much plots with their fitting in the same figure Please answer me fast you can ): Thank you
@ATTIQIQBAL
@ATTIQIQBAL 3 жыл бұрын
Just use the hold on command and run the code again for different fitting without closing the previous graph
@siddharthssahu2319
@siddharthssahu2319 2 жыл бұрын
with the command "polyfit" the code will be very very simpler no ??? we dont have to write this much in the code ... am i right ??
@ATTIQIQBAL
@ATTIQIQBAL 2 жыл бұрын
Polyfit is MATLAB built-in command to apply curve fitting. This code is made for understanding the curve fitting and making it's code at basic level.
@engineervlogs913
@engineervlogs913 Жыл бұрын
polynomial with multiple variable, how to code ?
@saicandidates3969
@saicandidates3969 2 жыл бұрын
Really nice sir... ❤❤ Can we plot graph by using another simple commands not linspace or polyval.....
@ATTIQIQBAL
@ATTIQIQBAL 2 жыл бұрын
Polyval is necessary in order to evaluate polynomial at some value while instead of linspace you can simply define x vector like x = X(1) : 100 : X(n)
@vrushabhrode7937
@vrushabhrode7937 Жыл бұрын
sir if there is large no of data then this code is ok or what?
@ATTIQIQBAL
@ATTIQIQBAL Жыл бұрын
Yes, there is no restriction of data but may be if the data is so much scattered then linear or parabolic fit are not enough to best fit the given data.
@darshanjohncena8501
@darshanjohncena8501 3 жыл бұрын
Can you please comment the Entire code will be helpful..!!
@cricketnewswithmukesh
@cricketnewswithmukesh 3 жыл бұрын
Sir how to plot take 3 data from commond window and plot 3 curve together?
@ATTIQIQBAL
@ATTIQIQBAL 3 жыл бұрын
If you want to plot 2D plot of three different curves then use hold on command after first curve plot and plot the 2nd curve and so on.
@cricketnewswithmukesh
@cricketnewswithmukesh 3 жыл бұрын
@@ATTIQIQBAL thank you so much sir i got it
@samraharif7510
@samraharif7510 2 жыл бұрын
Well explained. How can I contact you?
@ATTIQIQBAL
@ATTIQIQBAL 2 жыл бұрын
Email at attiqforstudents@gmail.com
@honeykumar5700
@honeykumar5700 3 жыл бұрын
I wonder why you have not reached 1k subscribers (i think its YTs algorithm)
@ATTIQIQBAL
@ATTIQIQBAL 3 жыл бұрын
Haha maybe :D
@honeykumar5700
@honeykumar5700 3 жыл бұрын
Btw love your Urdu Accent
@ATTIQIQBAL
@ATTIQIQBAL 3 жыл бұрын
Thank you brother.
@honeykumar5700
@honeykumar5700 3 жыл бұрын
@@ATTIQIQBAL Bro can you please give me a code for Solving ODE with Picards method
@ATTIQIQBAL
@ATTIQIQBAL 3 жыл бұрын
Sorry I haven't tried it.
@ShafqatAli-jg9ym
@ShafqatAli-jg9ym 4 жыл бұрын
Nikis axplainashun deer
@md.labibulislam870
@md.labibulislam870 3 жыл бұрын
kiss u bro for this
Numerical Differentiation with MATLAB code
38:11
ATTIQ IQBAL
Рет қаралды 19 М.
Lecture: Least-Squares Fitting Methods
44:39
AMATH 301
Рет қаралды 108 М.
Magic? 😨
00:14
Andrey Grechka
Рет қаралды 20 МЛН
Glow Stick Secret Pt.4 😱 #shorts
00:35
Mr DegrEE
Рет қаралды 9 МЛН
This Dumbbell Is Impossible To Lift!
01:00
Stokes Twins
Рет қаралды 36 МЛН
what will you choose? #tiktok
00:14
Анастасия Тарасова
Рет қаралды 6 МЛН
LU decomposition using Doolittle's Method with MATLAB code
38:15
ATTIQ IQBAL
Рет қаралды 26 М.
Curve Fitting in Python (2022)
24:50
Mr. P Solver
Рет қаралды 93 М.
Introduction to curve fitting using Matlab - Part 01
39:00
NPTEL-NOC IITM
Рет қаралды 21 М.
How I would learn to code (if I could start over)
10:52
PIRATE KING
Рет қаралды 1,3 МЛН
Gauss Elimination Method with MATLAB code
25:00
ATTIQ IQBAL
Рет қаралды 84 М.
Non linear curve fitting using MATLAB and Excel
13:44
Rahmat Sunarya
Рет қаралды 4,8 М.
Curve Fitting with CFTOOL - MATLAB for Non-Believers
8:28
purdueMET
Рет қаралды 53 М.
Curve Fitting
36:17
Dr. Manal El-Said Ali
Рет қаралды 12 М.
Introduction to MATLAB for beginners
1:18:50
ATTIQ IQBAL
Рет қаралды 10 М.
Magic? 😨
00:14
Andrey Grechka
Рет қаралды 20 МЛН