concat tall array cells

5 次查看(过去 30 天)
Robert Scott
Robert Scott 2021-8-3
so as usually, nothing is easy with matlab
trying to convert a program over to tall cell arrays
and its when i do something as simple as
new_array = tall(old_array)
I get my new_array sure
But alas, it breaks basically every single thing else in the program
For example, strcat doenst work with tall arrays
nor does cat for that matter. What good a data type of tall array do when it breaks every single other function you have used.
  2 个评论
Rik
Rik 2021-8-3
a=tall([1 2]);
b=tall([3 4]);
cat(1,a,b)
ans = 2×2 tall double matrix 1 2 3 4
You probably do need to make sure every array is tall.

请先登录,再进行评论。

回答(1 个)

Sahil Jain
Sahil Jain 2021-9-1
Hi Robert. As mentioned by other community members, "cat" is supported by tall arrays. However, "strcat" is not currently supported. As a workaround, you can try using the "+" operator to concatenate strings in tall arrays.
str1 = tall(["John ","Mary "]);
str2 = tall(["Smith","Jones"]);
str1 + str2
ans = 1×2 tall string array "John Smith" "Mary Jones"

类别

Help CenterFile Exchange 中查找有关 Large Files and Big Data 的更多信息

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by