chop a 1-D vector

How do I cut the first 2 samples of 1-D vector has 1000 samples in Simulink?

Réponses (2)

ScottB
ScottB le 28 Juin 2012

0 votes

z = rand(1000,1);
a = size(z)
z(1:2) = [];
b = size(z)
K E
K E le 28 Juin 2012
Modifié(e) : K E le 28 Juin 2012

0 votes

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.

Catégories

En savoir plus sur Modeling dans Centre d'aide et File Exchange

Tags

Question posée :

le 28 Juin 2012

Community Treasure Hunt

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

Start Hunting!

Translated by