Merge vector and array into one array

2 ビュー (過去 30 日間)
Kasper
Kasper 2014 年 5 月 5 日
コメント済み: Kasper 2014 年 5 月 5 日
Hey
I want to merge a cell array with a vector. In the cell array I have text and the vector contains numbers. So what I want is to merge them like this:
Q = (Blabla1, blabla2, blabla3, ...)
T = (1.52, 1.78, 1.67 ...)
QT ="row 1" Blabla1, blabla2, blabla3, ...
"row 2" 1.52, 1.78, 1.67 ...
Thanks in advance!

採用された回答

Matt J
Matt J 2014 年 5 月 5 日
編集済み: Matt J 2014 年 5 月 5 日
This might be an example of what you want,
>> Q={'dog', 'cat'};
T=[1,2];
>> QT=[Q;num2cell(T)]
QT =
'dog' 'cat'
[ 1] [ 2]
  1 件のコメント
Kasper
Kasper 2014 年 5 月 5 日
QT=[Q;num2cell(T)] did the trick ! My Q and T was already filled with data, so QT=[Q;num2cell(T)] was all I needed. Thank you!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by