MATLAB: How to cut the signal at particular time or tol value ?

MATLABsignal processing

I have a signal and respective time ,how shall I cut it at a certain more or less close to tol value/time vector value.
How to set the tol and plot the cut signals ?
close all
clear all
load signal
load t
S = signal(1,:);
tol = 0.5/2310;
plot(t,S);
T = (1:tol); %??
%then plot limited signal with limited time

Best Answer

load signal
load t
S = signal(1,:);
tol = 0.5/2310;
plot(t,S);
[minDistance, indexOfMin] = min(abs(tol-t));
newt = t(1:indexOfMin);
newS = S(1:indexOfMin);
plot(newt,newS);