how to get absolute value ?

12 Ansichten (letzte 30 Tage)
Aniket
Aniket am 11 Apr. 2013
Kommentiert: James am 31 Okt. 2013
I have some error data with time. and i want to get minimum absolute value from one time point till end time point.
for example
time 0 1 2 3 4 5 6
data 0.3 0.4 0.5 0.6 0.8 0.9 1.0
in the above example i want to get minimum absolute value from time = 3 to time = 6
so should i get this ?
right now i am doing like this
y = min(abs(e(3,end)))
e is variable where i am saving this time and data

Akzeptierte Antwort

Jan
Jan am 11 Apr. 2013
time = [0 1 2 3 4 5 6]:
data = [0.3 0.4 0.5 0.6 0.8 0.9 1.0];
ini = find(time == 3);
fin = find(time == 6);
result = min(abs(data(ini:fin)));
  2 Kommentare
Aniket
Aniket am 11 Apr. 2013
for my simulation i amgetting data like this
e{1,1} first coloumn time points and second coloumn data for how should i write abs command ?
y1 = min(abs(e{1,1}(18077:end)))
18077 is row number.
James
James am 31 Okt. 2013
Indexing a matrix is:
e(rows,columns)
so you want to use:
e(18077:end, 2)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by