Fitting Data in Matlab

Поділитися
Вставка
  • Опубліковано 22 чер 2020
  • This is a tutorial for how to fit a model to a given data set using the lsqcurvefit function in Matlab. Note: You may need to download a toolbox to use this!

КОМЕНТАРІ • 8

  • @jackmitchell6383
    @jackmitchell6383 3 роки тому

    Brilliant video, really helped me with some of my Uni work :)

  • @zamoumamir533
    @zamoumamir533 2 роки тому

  • @sobhykholaif5833
    @sobhykholaif5833 3 роки тому

    many thaaaaaaaaaaaaaanks

  • @ItsSkyhawk
    @ItsSkyhawk 2 роки тому

    you saved me

  • @navneetkumar6606
    @navneetkumar6606 3 роки тому

    thankyou

  • @antoniojimenezrecio257
    @antoniojimenezrecio257 3 роки тому

    When i did my scrip matlab show me an error: Function value and YDATA sizes are not equal. Can you solve my problem? Thanks

  • @RowanHumphreys
    @RowanHumphreys Рік тому

    in case anyone stumbled here:
    The code she's written doesn't work with this line:
    fprintf("y = 1 / (1 + %f/x) ^%f)
    ", p(1), p(2))
    it's only working because 'p' already exists in her workspace... Consequently, If you follow verbatim you will encounter an error.
    you need to write:
    fprintf("y = 1 / (1 + %f/x) ^%f)
    ", p_opt(1), p_opt(2))
    I think