how would I input this equation into MATLAB

1 view (last 30 days)
how would I input this equation into matlab?
yi= each data point
sigma is uncertainty for each point
mi=corresponding model point
N=number of points
  1 Comment
Cris LaPierre
Cris LaPierre on 22 Oct 2021
Have you gone through MATLAB Onramp yet? It will teach you how to create variables, assign values, index and modify arrays, perform calculations, and even cretae and use for loops.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 22 Oct 2021
Like this
chiSquared = sum(((y - m) ./ sigma) .^ 2);

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!