Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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?

Respuestas (1)

Thorsten
Thorsten el 1 de Feb. de 2013
row = [1;2;3;4;5;6;7];
column = row';
  2 comentarios
Zoltan
Zoltan el 1 de Feb. de 2013
Yes, this is working in MATLAB. I would like to accomplish the same thing in Simulink.
Zoltan
Zoltan el 1 de Feb. de 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

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by