我有两个m file,A.m 和 B.m。A要用来给参数,B是function.
A.m
x=[a b c];
y={'desc1' 'desc2' 'desc3'};
Amax(x,y);
B.m
function Amat(x,y)
dataset = xlsread('sale.xls');
x1=x'*x;
xlswrite('result.xls',y);
end
说明:
1. B file 会读入data,总共有10个变量,但我们只要取用a, b and c 3个即可。
2. A file 指定x(matrix with a, b and c)和y(char)做为变量的名称(for export)。
请问一下有人知道要如何在A给出x matrix传送到B吗?谢谢。