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

4 views (last 30 days)
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?

Answers (1)

Thorsten
Thorsten on 1 Feb 2013
row = [1;2;3;4;5;6;7];
column = row';
  2 Comments
Zoltan
Zoltan on 1 Feb 2013
If i export my array from Simulink into the workspace, and make the conversion above, it doesn't work. The result is the same 7x1 array. Not 1x7

Sign in to comment.

Products

Community Treasure Hunt

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

Start Hunting!