Passing a matrix to a function and returning

25 Ansichten (letzte 30 Tage)
Unnikrishnan PC
Unnikrishnan PC am 13 Apr. 2014
Beantwortet: Image Analyst am 13 Apr. 2014
I wish to pass a matrix A= [ 1 2 3] and B =[2 5 7] to a function in matlab and return its sum A+B. Please help

Antworten (1)

Image Analyst
Image Analyst am 13 Apr. 2014
In test.m:
function test()
A= [ 1 2 3];
B =[2 5 7]
C = AddTogether(A, B)
function c = AddTogether(a, b)
c = a + b;
Of course it's good to make it more robust with try/catch and checking that the things actually can be added together. I've just given you the bare minimum.

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by