image thumbnail
from Data processing module for ion acceleration experiment by Sasha Zorin
Application producing dependence of magnetic and plasma characteristics on acceleration time

pr.m
[t,rmkom1] = textread('pr.dat','%f %f ','headerlines',1)
rmkom1Figure = figure
axes('FontSize',14,'position',[0.15  0.15  0.75  0.75])
Time_Index=find(t>=1.05)
tnew=t(Time_Index);
rmkom1new=rmkom1(Time_Index);
plot(tnew,rmkom1new,'.-g','MarkerSize',10.0)
axis([0  1.6 0 6])
Tdbz1XLabel=1;
Tdbz1YLabel=0.5;
text(Tdbz1XLabel,Tdbz1YLabel,'t_b_r=1.0 s ','HorizontalAlignment','center','FontSize',14)
grid on
xlabel('Time, s','FontSize',14)
ylabel('Rp, mkOhm','FontSize',14)
title('Plasma Resistance','FontSize',14)
print -f1 -djpeg 'pr.jpeg'

Contact us at files@mathworks.com