'Unable to concatenate the table variables 'Var1' and 'Var2', because their types are cell and double.' why this error is showing?
41 ビュー (過去 30 日間)
古いコメントを表示
clear all;
clc;
%read X sample
ix1 = readtable("x_sample_01.dat",'ReadVariableNames',false);
x1 = table2array(ix1);
0 件のコメント
回答 (1 件)
Walter Roberson
2023 年 3 月 18 日
Your file contains a mix of text and numeric. What result are you expecting when you ask to convert it to a single array?
6 件のコメント
Walter Roberson
2023 年 8 月 25 日
The case where there are empty columns get converted to doubles and filled with NaN -- no problem with table2array()
headerlines = {'Var1', 'Var2'};
Var1 = cell(2,1);
Var2 = [11; 22];
top = headerlines;
bottom = [Var1, num2cell(Var2)];
C = [top; bottom]
writecell(C, 'temp_table.xlsx');
ix1 = readtable('temp_table.xlsx')
x1 = table2array(ix1)
writecell(C, 'temp_table.csv');
dbtype temp_table.csv
参考
カテゴリ
Help Center および File Exchange で Measurements and Feature Extraction についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!