I have this variable:
>> out1
ans =
Columns 1 through 5
[899x5 double] [899x5 double] [899x5 double] [899x5 double] [899x5 double]
Columns 6 through 10
[899x5 double] [899x5 double] [899x5 double] [899x6 double] [899x6 double]
Columns 11 through 15
[899x6 double] [899x6 double] [899x6 double] [899x6 double] [899x6 double]
Column 16
[899x6 double]
And I want to substract at each columns of the out variable the third element of each [899*5] or [899*6]

1 件のコメント

Francesco
Francesco 2014 年 2 月 14 日
I want to substract at each columns of the out1 variable the third element. A sort of this line of code:
bsxfun(@minus, prova,prova(3,:))

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

 採用された回答

Matt J
Matt J 2014 年 2 月 14 日
編集済み: Matt J 2014 年 2 月 14 日

0 投票

cellfun(@(c) bsxfun(@minus, c,c(3,:)) , out1,'uni',0)

2 件のコメント

Francesco
Francesco 2014 年 2 月 14 日
This code read the first element of the third rows of the out1 variable and substract each for all the columns?
Matt J
Matt J 2014 年 2 月 14 日
For each matrix out1{i}, it subtracts the 3rd row from all of the other rows.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLinear Algebra についてさらに検索

タグ

質問済み:

2014 年 2 月 14 日

コメント済み:

2014 年 2 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by