How to go about programming this function in MatLab

I am trying to program a function into matlab but I am struggling to get started. I want to program it as a function and not as part of a script so that I may use it later on when I need it.
Basicaly, there will be n number of terms, and x and y are arrays that will change in size depending on how have set them up.

2 commentaires

Stephen23
Stephen23 le 28 Avr 2021
Modifié(e) : Stephen23 le 28 Avr 2021
Original question retrieved from Google Cache:
I am trying to program a function into matlab but I am struggling to get started. I want to program it as a function and not as part of a script so that I may use it later on when I need it.
Basicaly, there will be n number of terms, and x and y are arrays that will change in size depending on how have set them up.
(Answers Dev) Restored edit

Connectez-vous pour commenter.

Réponses (2)

Jan
Jan le 20 Avr 2021
function c = YourSum(x, y, a, b)
c = sum(sqrt((a - x).^2 + (b - y).^2));
end

Catégories

En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange

Produits

Version

R2020b

Question posée :

le 20 Avr 2021

Commenté :

le 6 Mai 2021

Community Treasure Hunt

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

Start Hunting!

Translated by