Shams ElFouly
Shams ElFouly
  • Видео 78
  • Просмотров 277 381

Видео

Golden Section Search - Concept
Просмотров 3 тыс.3 года назад
Golden Section Search - Concept
Newton Raphson to Find Optimums - Python Code
Просмотров 5633 года назад
Newton Raphson to Find Optimums - Python Code
Newton Raphson to Find Optimums
Просмотров 3633 года назад
Newton Raphson to Find Optimums
Analytical Solution to Find Optimums
Просмотров 5593 года назад
Analytical Solution to Find Optimums
Introduction to Optimization
Просмотров 1,6 тыс.3 года назад
Introduction to Optimization
Gauss Elimination Code - ANY SIZE - Python Code
Просмотров 32 тыс.3 года назад
Gauss Elimination Code - ANY SIZE - Python Code
Gauss Elimination - 4x4 - Python Code
Просмотров 6 тыс.3 года назад
Gauss Elimination - 4x4 - Python Code
Gauss Elimination - Concept
Просмотров 1 тыс.3 года назад
Gauss Elimination - Concept
Polynomial Regression using Numpy - Python Code
Просмотров 1,1 тыс.3 года назад
Polynomial Regression using Numpy - Python Code
Polynomial Regression using Gauss Elimination - Python Code
Просмотров 1,2 тыс.3 года назад
Polynomial Regression using Gauss Elimination - Python Code
Polynomial Regression - Concept
Просмотров 3023 года назад
Polynomial Regression - Concept
Linear Regression - Python Code
Просмотров 2433 года назад
Linear Regression - Python Code
Linear Regression - Concept
Просмотров 2893 года назад
Linear Regression - Concept
Multiple Root - Python Code
Просмотров 7583 года назад
Multiple Root - Python Code
Multiple Root - Concept
Просмотров 1,1 тыс.3 года назад
Multiple Root - Concept
Secant Method - Python Code
Просмотров 3,3 тыс.3 года назад
Secant Method - Python Code
Secant Method - Concept
Просмотров 983 года назад
Secant Method - Concept
Newton Raphson - Python Code
Просмотров 8573 года назад
Newton Raphson - Python Code
Newton Raphson - Concept
Просмотров 1343 года назад
Newton Raphson - Concept
False Position - Python Code
Просмотров 4763 года назад
False Position - Python Code
False Position - Concept
Просмотров 673 года назад
False Position - Concept
Bisection - Python Code
Просмотров 7843 года назад
Bisection - Python Code
Bisection Method - Concept
Просмотров 1333 года назад
Bisection Method - Concept
Introduction to Roots of Equations
Просмотров 2433 года назад
Introduction to Roots of Equations
ODE Examples - Python Code
Просмотров 7323 года назад
ODE Examples - Python Code
Runge Kutta Methods3rd & 4th order - Python Code
Просмотров 20 тыс.3 года назад
Runge Kutta Methods3rd & 4th order - Python Code
Runge Kutta Methods 3rd & 4th order - Concept
Просмотров 8023 года назад
Runge Kutta Methods 3rd & 4th order - Concept
Heuns, Midpoint & Ralston - Python Code
Просмотров 1,8 тыс.3 года назад
Heuns, Midpoint & Ralston - Python Code
Heuns, Midpoint & Ralston - Concept
Просмотров 7123 года назад
Heuns, Midpoint & Ralston - Concept

Комментарии

  • @jeyhuntalibov9911
    @jeyhuntalibov9911 23 дня назад

    can u please share jupiter notebook where u have written all codes of this playlist. I d love to get it , thanks for great content

  • @AdityaKrishnaSharma
    @AdityaKrishnaSharma Месяц назад

    How did you calculate the et numerical values

  • @jerichoontalan7810
    @jerichoontalan7810 3 месяца назад

    This is so helpful 😭

  • @edsoncruz7441
    @edsoncruz7441 4 месяца назад

    Dear Mr Shams! Recently, I've implemented on the Rockwell Automation Contrologix 5000 a Power Fit using Gauss Elimination Method routine based on the idea of the algorithm you have designed. I've tested my routine using some examples and it performed pretty good. So, I am contact you just to know if you have any objection if I mention your source code as reference in paper that I am submitting to a conference.

    • @shamselfouly
      @shamselfouly 3 месяца назад

      It would be my pleasure! I am glad you have found value in my video. Good luck in the conference.

  • @rubenssolorzano454
    @rubenssolorzano454 4 месяца назад

    THANKS MAN, YOU ARE THE GOAT

  • @saidberk6599
    @saidberk6599 6 месяцев назад

    Clean Tutorial, thank you!

  • @_FranciscoDinis
    @_FranciscoDinis 6 месяцев назад

    Obrigado

  • @petrichxr1711
    @petrichxr1711 6 месяцев назад

    You are an W teacher my dude, congrats

  • @luismateoaguirresoliz1875
    @luismateoaguirresoliz1875 7 месяцев назад

    share this code here please

  • @adamelter8925
    @adamelter8925 7 месяцев назад

    Cool video man, appreciate the effort, keep up the good work!

  • @riyantsabit3626
    @riyantsabit3626 8 месяцев назад

    sorry it should be, b1 is 20

  • @triple_octopus
    @triple_octopus 9 месяцев назад

    Thank you so much :)

  • @abdulwasayikhlaq8013
    @abdulwasayikhlaq8013 10 месяцев назад

    Excellent video. Thankyou for sharing!

  • @maniramanuja7356
    @maniramanuja7356 11 месяцев назад

    CODE PLCELSE

  • @Jaggith
    @Jaggith Год назад

    Hurts my math brain that Excels Build in function uses round-down for non-integers.

  • @boyang2241
    @boyang2241 Год назад

    Thanks for your great tutorial video! Could you please explain the 'not-a-knot' boundary conditions and how can we calculate it?

  • @henryjamu8710
    @henryjamu8710 Год назад

    Thanks a lot

  • @henryjamu8710
    @henryjamu8710 Год назад

    Thanks this has really been helpful

  • @pixelberrychoicespodcast5861

    How do i know for a particular integration that i need that many trapezoids? I mean how do i know rhe number n?

    • @shamselfouly
      @shamselfouly Год назад

      Hello, we usually define an error tolerance and have the code loop through multiple n numbers to find which one fits our criteria. I show this in this video where I develop the python code associated to this technique. You can have the code print the n number that solved your integration. Hope this helps. ruclips.net/video/nrfbPTA9G00/видео.html

    • @pixelberrychoicespodcast5861
      @pixelberrychoicespodcast5861 Год назад

      @@shamselfouly thanks it helped a lot ♥️💙

  • @Reem-w9k5o
    @Reem-w9k5o Год назад

    Can u write the code in the description? , pls

  • @BrendanHirst
    @BrendanHirst Год назад

    Hi Shams, Great series of lessons. However, please can you correct a typo in your script,... it is trivial but better correct than not. "et = abs((1.71828 - I[1, i+1]) / 1.7182) * 100" should be "et = abs((1.71828 - I[1, i+1]) / 1.71828) * 100" Best, Brendan

  • @archanamourya4983
    @archanamourya4983 Год назад

    Excellent.... Thanks

  • @brunoassisdelima9410
    @brunoassisdelima9410 Год назад

    Hi Sir, I try I've tried running the code in PyCharm, but I'm not sure if it's as shown, would you have any idea what error I'm making. Thanks for sharing. import math import matplotlib.pyplot as plt #Functions - Funções Sgma_y = lambda x,y: math.sin(x)**2*y f = lambda x: 2*math.exp{0.5*(x*math.sin(x)*math.cos(x))} #Visual (zot om Code inicial) print('x\t\t y \t\t f(x)'); print('xf\t xf'x {x,y, f(x)}) x_plot* []; y_Rx4.apperd(y); y_analytical.apperd(f(x)) * [] #Rx4 method for i in range(1, n+1): #futer's Method k1 = Sgma_y(x,y) k2 = Sgma_y(x*h/2, y * k1 * h/2) k3 = Sgma_y(x*h/2, y * k2*h/2) k4 = Sgma_y(x*h, y * k3*h) #Calculate new y estimation y* y + 1/ 6 * (k1 * 2 * k2 * 2 * k3 * k4) * h #increase x by step size to calculate next y estimate x = x + h print('Xf\t Xf \t Xf'X (x, y, f(x))) #Visualization Code x_plot.append(x); y_Kx4.append(y); y_analytical.append(f(x)) plt.plot(x_plot,y_kx4,'ro',x_plot,y_analytical) plt.xlabel('x');plt.ylabel('y') plt.legend(['kx4','Analytical'])

  • @Вартанян-ъ3в
    @Вартанян-ъ3в Год назад

    Is it okay for the approximate error to be more than 100%? I have such approximate error in the following problem's first iteration: 4x-1.8x^2+1.2x^3-0.3x^4=f(x)

  • @arzelgrim4024
    @arzelgrim4024 Год назад

    How did you input x^2

  • @jahanvi9429
    @jahanvi9429 Год назад

    OMGGG thank you!! I was searching for a code for so long but they were all kind of long and difficult to understand. This was so easy and helpful! You are a lifesaver

  • @agnesjelander3176
    @agnesjelander3176 2 года назад

    Hi! What does ea and et stands for?

    • @shamselfouly
      @shamselfouly 2 года назад

      ea stands for approximate error and et stands for true error

  • @NovaHolyDays
    @NovaHolyDays 2 года назад

    The consept was so easy to understand! Thanks!

  • @syirazikama735
    @syirazikama735 2 года назад

    Hye bro..can you help me check my vba script..have error

  • @Rony234-t9m
    @Rony234-t9m 2 года назад

    Thanks for the video!! I have a question, how can i find the inflection point of the graph?

  • @asds5750
    @asds5750 2 года назад

    Sir this is the Euler Forwards or Euler Backwards?

  • @FixerLSG
    @FixerLSG 2 года назад

    wheres the code

  • @kashanosman4738
    @kashanosman4738 2 года назад

    please you can get the code please?

  • @angelacastellanos618
    @angelacastellanos618 2 года назад

    Can you send me the excel please? I really need it :(

  • @brianblockmon7833
    @brianblockmon7833 2 года назад

    Where can I access this code?

  • @siyabongabrian5946
    @siyabongabrian5946 2 года назад

    How can I get the augmented matrix from the user as input

  • @jonathansologaistoa2417
    @jonathansologaistoa2417 2 года назад

    alreadyfind the solution, found the missing code

  • @jonathansologaistoa2417
    @jonathansologaistoa2417 2 года назад

    sorry where I can find the continuation from this tutorial, only seen up to display matrices & vector on excel spreadsheet and I search up to end if. you can provide me with the name to look for it or the link, thanks

  • @senthannaicker2786
    @senthannaicker2786 2 года назад

    could you please explain what ea is ? and why we say ea = Abs((xr - xi)/xr) * 100. thank you

  • @jonathansologaistoa2417
    @jonathansologaistoa2417 2 года назад

    could you put please the link of the following class, thanks for sharing the code so interesting.

  • @thiagoXXXmarinho
    @thiagoXXXmarinho 2 года назад

    Everything seems good, but how to apply this for the case where you don't know the analytical function? How would you program a numerical calculation of dydx?

    • @aggerdanny
      @aggerdanny Год назад

      simple central difference with some small perturbation h=1E-7 should be ok

  • @shamselfoulyy7630
    @shamselfoulyy7630 2 года назад

    My name is shams el fouly

  • @mysticcm8830
    @mysticcm8830 2 года назад

    What if you only need to swap the 2nd and 3rd row and not to touch the 1st row. The code affects it, right?

  • @RingoSimpkinsUK
    @RingoSimpkinsUK 2 года назад

    Awesome!

  • @johnlovesmath
    @johnlovesmath 2 года назад

    This is so much easier to read than the code in my book. I really appreciate it. I watched it 3 times to 100% understand and it's beautiful.

  • @brunocasanova3617
    @brunocasanova3617 2 года назад

    i tried doing a similar code i keep getting unidentified variable errors

  • @hidayahjamil8504
    @hidayahjamil8504 2 года назад

    what if my function have exponent e, it says that my exp doesn't define???

  • @omidsaghatchian7502
    @omidsaghatchian7502 2 года назад

    that was helpful. thanks :)

  • @a_6892
    @a_6892 2 года назад

    ;( unfortunately it didn't work, but sounds very good... I have checked everything one million times, it's same as yours, but the solution fails... What should I do? I guess, your video is the best answer in the internet... wanna cry x[n-1]=b[n-1]/a[n-1, n-1] - this part TypeError Traceback (most recent call last) TypeError: only size-1 arrays can be converted to Python scalars The above exception was the direct cause of the following exception: ValueError Traceback (most recent call last) /var/folders/9y/ngq521_x3rlc7wgd1c5kwqgh0000gn/T/ipykernel_55498/314398621.py in <module> ----> 1 x[n-1]=b[n-1]/a[n-1, n-1] ValueError: setting an array element with a sequence.

  • @pavansai-tl8du
    @pavansai-tl8du 2 года назад

    I used the same code for my values. But, unfortunately it’s showing runtime error 11 Division by zero. How to over come this error.