trouble selecting column for function to return

1 回表示 (過去 30 日間)
Scragmore
Scragmore 2011 年 10 月 22 日
My code;
function Mat_abcd = mod_mx(x, y)
A = x;
B = bsxfun(@mod,x,y);
C = floor(bsxfun(@rdivide,x,y));
D = kron(C, y);
Mat_abcd = [A(:2), B(:2)];
Both A and B return multiple columns, I would like to return specific columns.
I have also tried
Mat_abcd = [A.series2, B.series2]
but this also returns an error. Please where am I going wrong.

採用された回答

Image Analyst
Image Analyst 2011 年 10 月 22 日
I don't know what x is, or A and B, but if A and B are 2D arrays, try this:
Mat_abcd = [A(:,2), B(:,2)];
You forgot the commas after the colons.
  1 件のコメント
Scragmore
Scragmore 2011 年 10 月 22 日
School boy error. Thanks.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by