필터 지우기
필터 지우기

chop a 1-D vector

조회 수: 2 (최근 30일)
Nadia
Nadia 2012년 6월 28일
How do I cut the first 2 samples of 1-D vector has 1000 samples in Simulink?

답변 (2개)

ScottB
ScottB 2012년 6월 28일
z = rand(1000,1);
a = size(z)
z(1:2) = [];
b = size(z)

K E
K E 2012년 6월 28일
편집: K E 2012년 6월 28일
If you want to select the third through last values of your vector within Simulink, you can use the Selector block. If you want to remove the first two elements prior to importing the data into your Simulink model, see ScottB's answer.

카테고리

Help CenterFile Exchange에서 Interactive Model Editing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by