how to combine these in an array

5 次查看(过去 30 天)
Hi
I have 4 variables with type duration. for example they have sizes a=1x2 duration b=0x1 duration c=0x1duration, d=1x20 duration (not always these sizes). How can i put them in an array or matrix then sort them.
I tried A=sort([a;b;c;d])
but I get the error
Error using duration/horzcat (line 612)
Dimensions of arrays being concatenated are not consistent.
I would appriciate any suggestions
Thanks in advance!

采纳的回答

Guillaume
Guillaume 2020-4-29
You're trying to vertically concatenate arrays with different number of columns (2, 1, 1, and 20), which indeed is not possible and makes no sense.
You wouldn't be able to horizontally concatenate them either since they also have a different number of rows (1, 0, 0, and 1).
If you really need to concatenate them into something you 'll have to reshape them to at least one common dimension which is likely a vector:
sort([a(:); b(:); c(:); d(:)])
whether or not it makes sense to reshape them into vectors, only you knows.
On the other hand, if you should have been able to vertically concatenate the vectors in the first place, then something has gone wrong in the code before that and you'll have to explain how these array came to be if you want more help.
  2 个评论
ALDO
ALDO 2020-4-29
That worked perfectly! Thank you for your explanation
Adam Danz
Adam Danz 2020-4-29
Why can't they be horizontally concatenated?
a = rand(1,2);
b = rand(0,1);
c = rand(0,1);
d = rand(1,120);
z = [a,b,c,d]
result
>> size(z)
ans =
1 122
>> z
z =
Columns 1 through 10
0.50382 0.20128 0.53055 ....

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by