How to go about programming this function in MatLab

1 次查看(过去 30 天)
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 个评论
Stephen23
Stephen23 2021-4-28
编辑:Stephen23 2021-4-28
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.

请先登录,再进行评论。

回答(2 个)

Walter Roberson
Walter Roberson 2021-4-20
c = @(x,y) sum(sqrt((a-x).^2 + (b-y).^2))

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

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by