JohannesRaphael
Mechanical
- Jun 28, 2004
- 2
Hi there,
i need to get a calibration data set of 100 steps.
therefor i get data for each temperature level ... so a stairs-function.
i know the length (1200seconds) and the min-max level 0.1
so how can i extract these data segments from the original data?
i tried the following ... doesn´t work!
for i = 1:Nsk;
if (abs(Mitte(i,1)-Mitte(i+1,1)) <= 0.1) & (abs(Mitte(i,1)-Mitte(i+1200,1)) <= 0.1)
pass1(i) = SK(i);
end;
end;
also with derivatives it´s hard - coz i don't really have maybe the right conditions
cheers JR
i need to get a calibration data set of 100 steps.
therefor i get data for each temperature level ... so a stairs-function.
i know the length (1200seconds) and the min-max level 0.1
so how can i extract these data segments from the original data?
i tried the following ... doesn´t work!
for i = 1:Nsk;
if (abs(Mitte(i,1)-Mitte(i+1,1)) <= 0.1) & (abs(Mitte(i,1)-Mitte(i+1200,1)) <= 0.1)
pass1(i) = SK(i);
end;
end;
also with derivatives it´s hard - coz i don't really have maybe the right conditions
cheers JR