How to set different intervals using linspace()?

9 Ansichten (letzte 30 Tage)
Notname Notname
Notname Notname am 1 Jul. 2019
Beantwortet: Aquatris am 1 Jul. 2019
I want to use intervals with different range for example:
1<=x<=100 would be linspace(1,100)
but can i use linspace without including first (or last) value:
1<x<=100 ?
  1 Kommentar
Torsten
Torsten am 1 Jul. 2019
Bearbeitet: Torsten am 1 Jul. 2019
x = linspace(1,100);
x = x(2:end) % x = x(1:end-1)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Aquatris
Aquatris am 1 Jul. 2019
If you want to remove a certain element;
x = linspace(1,100,1e3); % 1000 elements
i = 100; % index to be removed
x(i) = []; % remove ith element
which will remove the i th element from the array.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by