how can I generate indices for submatrix extraction in simulink?

조회 수: 3 (최근 30일)
Simone
Simone 2014년 3월 8일
답변: Prateekshya 2024년 10월 15일
Hi,
I want to do the following function in simulink without using embedded matlab:
function index=index_gen(i1,i2)
if(i1<=i2)
index=i1:i2;
else
index=i2:i1;
end
end
is there a simulink block or is it possible to create a block which can generate a vector of indices starting from to integer values? because I need to generate dynamically a vector of indices to select a submatrix from a matrix thank you

답변 (1개)

Prateekshya
Prateekshya 2024년 10월 15일
Hello Simone,
Creating a dynamic vector of indices in Simulink without using Embedded MATLAB (now called MATLAB Function block) can be a bit challenging, as Simulink is primarily designed for signal processing and control systems rather than dynamic array operations. However, you can achieve this by using a combination of Simulink blocks and logic as follows.
  • Inputs: You need two integer inputs, i1 and i2.
  • Comparison Logic: Use a Relational Operator block to compare i1 and i2.
  • Switch Logic: Use Switch blocks to handle the logic for generating indices based on the comparison.
  • For Iterator Subsystem: Use a For Iterator Subsystem to generate the sequence of indices.
  • Output: Collect the indices into a vector.
I hope this helps!

카테고리

Help CenterFile Exchange에서 Signal Attributes and Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by