To write a function that takes two inputs, arr1 and arr2, both of size n x 1, and both containing doubles, we can define a function in MATLAB as follows:
main.m66 chars4 linesInside the function body, we can perform any manipulations and computations on the input arrays as required. Here is an example function that sums the two arrays element-wise and returns the result:
main.m278 chars10 linesTo call this function, we can simply pass in the two arrays as arguments:
main.m68 chars4 lines
This will result in result being a 3 x 1 array containing the sum of the corresponding elements in arr1 and arr2.
gistlibby LogSnag