フィルターのクリア

Extract entire matrices from a cell

2 ビュー (過去 30 日間)
AS
AS 2020 年 1 月 28 日
コメント済み: AS 2020 年 1 月 28 日
Hallo,
I have a cell which contains 10 matrices. Each matrix contains data from a different sensor and all matrices have different number of rows although they have the same number of columns. I would like to extract the entire matrices from the cell and keep the name of each matrix.
Thanks in advance
  5 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 28 日
Leave them in the struct. Use structfun() . Or use struct2cell() and cellfun()
AS
AS 2020 年 1 月 28 日
You are write, its a structure and it is better to do al the calculations inside the structure.

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

回答 (1 件)

Selva Karna
Selva Karna 2020 年 1 月 28 日
clc
clear all;
close all;
cel_len=length(your_cell);
for i=1:cel_len
exta_cel=your_cell(i);
ext_data(i)=ext_cel
end
  1 件のコメント
AS
AS 2020 年 1 月 28 日
Thanks for the answer. However this solution creates again the new structure ext_data with the same matrices.

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

カテゴリ

Help Center および File ExchangeVariables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by