function norub_bifur
q0=[0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0]
options = odeset('RelTol',1e-6,'AbsTol',1e-6)
T=2*pi
ts=[0:T/200:200*T]
for w=linspace(1,2501,250)
[tt,z]=ode45('norub',ts,q0,options,w)
[Xmax]=getmax(z(:,1))
plot(w,Xmax,'b','markersize',1)
hold on
clear Xmax
end