Multiple Array Inputs for Self Written Function

Good day,
I would like to consult the community if there is a method to input multiple arrays into a self written function for processing.
For example suppose I have three matrices, x, y, and z, where x, y, and z, are matrices of different dimensions, and I would like to input them into one single function for processing in such manner:
[a, b, c] = functionF(x, y, z)
Attempting to input it this way would cause an error of having too many input arguments.
I would like to ask if there is a way for this to work.
Best Regards Guan Zhao
03/01/2013

1 件のコメント

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 1 月 3 日
I do not see where is the problem. [a, b, c] = functionF(x, y, z) is correct even the sizes of x,y and z are different

サインインしてコメントする。

 採用された回答

per isakson
per isakson 2013 年 1 月 3 日
編集済み: per isakson 2013 年 1 月 3 日

0 投票

Try to run
[ a, b, c ] = functionF( magic(3), magic(4), magic(5) );
where the following code is in a file with the name functionF.m
function [ a, b, c ] = functionF( x, y, z )
a=x;
b=y;
c=z;
end

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by