我有兩個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嗎?謝謝。