現在この質問をフォロー中です
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます。
To read a cell array
2 ビュー (過去 30 日間)
古いコメントを表示
sarfudeen
2013 年 3 月 29 日
To read a particular column of a cell array using the position of header name.
回答 (1 件)
Azzi Abdelmalek
2013 年 3 月 29 日
Example
A=num2cell(magic(5))
Col=3
A(:,col)
17 件のコメント
Azzi Abdelmalek
2013 年 3 月 29 日
編集済み: Azzi Abdelmalek
2013 年 3 月 29 日
A=num2cell(magic(5))
t = uitable( 'Data',A)
% to read column 2
out=get(t,'Data')
col2=out(:,2)
Azzi Abdelmalek
2013 年 3 月 29 日
you do not need loops to access multiple columns
A=num2cell(magic(5))
col=[1 2 4]
A(:,col)
sarfudeen
2013 年 3 月 29 日
have 719 X 2 cell, would like to divide or multiply the 2 columns within the cells
Azzi Abdelmalek
2013 年 3 月 29 日
編集済み: Azzi Abdelmalek
2013 年 3 月 29 日
A=num2cell(rand(719,2)) % Example
p=cellfun(@times,A(:,1),A(:,2))
Or use @rdivide
sarfudeen
2013 年 3 月 29 日
my code:
data = cellfun(@rdivide,meas(:,32),meas(:,33),'UniformOutput',false);
I have 60 numbers of columns in my "meas" file.
Azzi Abdelmalek
2013 年 3 月 29 日
編集済み: Azzi Abdelmalek
2013 年 3 月 29 日
In windows command type
whos meas
what did you get?
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!エラーが発生しました
ページに変更が加えられたため、アクションを完了できません。ページを再度読み込み、更新された状態を確認してください。
Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
アジア太平洋地域
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)