Sampling values from step signal and concatenating them into a vector (Mx1 array into 1xM array)

1 次查看(过去 30 天)
I have a step signal coming from an ASCII decode block in Simulink. For example i have the values in a 7x1 array [1;2;3;4;5;6;7] and the sample period values
tout<7x1 double> = [0;0.0100;0.0200;0.0300;0.0400;0.0500;0.0600]
So when I connect it to a scope, it gives a series of steps.
How can I extract the values, one by one, and put them into a vector like this:
values=[1 2 3 4 5 6 7] {1x7},
so my values appear at the same time?

回答(1 个)

Thorsten
Thorsten 2013-2-1
row = [1;2;3;4;5;6;7];
column = row';

类别

Help CenterFile Exchange 中查找有关 String 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by