Borrar filtros
Borrar filtros

simulink matrix and vector creation

95 visualizaciones (últimos 30 días)
Mary
Mary el 1 de Jul. de 2011
hi guys,I am new in matlab and simulink. can you help me to create a matrix and vector block in simulink. your help is highly appriciated.

Respuesta aceptada

Paulo Silva
Paulo Silva el 1 de Jul. de 2011
The constant block can create vectors, the mux block can turn each vector input in a row of the output array.
You can also make vectors and arrays in the workspace and import them to simulink
  3 comentarios
Paulo Silva
Paulo Silva el 1 de Jul. de 2011
It depends if your values change with time, if not time dependent just put do the same code like in the workspace inside the Constant block value, example 1:10
If they are time dependent it not that easy, make them in the workspace and use the FromWorkpace block to import them
Ts=0.01;
t=1:Ts:10;
v=rand(1,numel(t));
VToImport=[t;v]
Paulo Silva
Paulo Silva el 1 de Jul. de 2011
Also take a look at this blog http://blogs.mathworks.com/seth/

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by