. . . 54 ”Gate Voltage ( $V {G}$ ) (V) ” , . . . 55 ” D i f f e r e n t i a l Resistance ($R$) ( $\Omega$) ” , . . . 56 ” double sweep ” , lambda , ” a l l ”) ; 57 58 lambda = @(X, Y, Z) X ./ Z − median (Rc) ; 59 [ sweepGateSourceDevice , X, Y, Z ] = hdf5surf ( filename , 1 , 1 , 1 , 1 , . . . 60 ”\ bf JS129A Upper Bound Device Resistance ” , . . . 61 ”Source−Drain Voltage ( $V {SD}$ ) (V) ” , . . . 62 ”Gate Voltage ( $V {G}$ ) (V) ” , . . . 63 ” D i f f e r e n t i a l Resistance ($R$) ( $\Omega$) ” , . . . 64 ” d e v i c e r e s i s t a n c e ” , lambda , ” a l l ”) ; 65 66 67 h = f i g u r e ; 68 su rf (X( [ 1 : 6 , 8 : end ] , : ) , Y( [ 1 : 6 , 8 : end ] , : ) , Z ( [ 1 : 6 , 8 : end ] , : ) ) ; 69 t i t l e (”\ bf JS129A Upper Bound Device Resistance ( Without $\ bf V {G}=0.1$V) \\” , . . . 70 ” I n t e r p r e t e r ” , ”LaTeX”) ; 71 xlim ( [ min(X, [ ] , ” a l l ”) max(X, [ ] , ” a l l ”) ] ) ; 72 xlabel (” Source−Drain Voltage ( $V {SD}$ ) (V) ” , ” I n t e r p r e t e r ” , ”LaTeX”) ; 73 ylabel (” Gate Voltage ( $V {G}$ ) (V) ” , ” I n t e r p r e t e r ” , ”LaTeX”) ; 74 75 shading interp ; 76 colormap hot ; 77 c = colorbar ; 78 c . Label . String = ” D i f f e r e n t i a l Resistance ($R$) ( $\Omega$) ”; 79 c . Label . I n t e r p r e t e r = ”LaTeX”; 80 c . Label . FontSize = 11; 81 view (2) ; 82 83 set (h , ” Units ” , ” Inches ”) ; 84 pos = get (h , ” Position ”) ; 85 set (h , ”PaperPositionMode ” , ”Auto” , ”PaperUnits ” , ” Inches ” , . . . 86 ” PaperSize ” , [ pos (3) , pos (4) ] ) ; 87 print (h , ” remove dirty resistance ” , ”−dpdf ” , ”−r300 ”) ; 88 89 90 Vg = unique (Y, ” sorted ”) ; 91 Rn = mean(Z , 2) ; 92 93 h = f i g u r e ; 94 plot (Vg, Rn, ”DisplayName ” , ” All $V {G}$ Values ”) ; 95 hold on ; 96 plot (Vg ( [ 1 : 6 , 8: end ] ) , Rn( [ 1 : 6 , 8: end ] ) , . . . 97 ”DisplayName ” , ”Without $V {G}=0.1$V”) ; 98 t i t l e (”\ bf JS129A Resistance with Respect to Gate Voltage ” , . . . 99 ” I n t e r p r e t e r ” , ”LaTeX”) ; 100 l = legend (” Location ” , ” northwest ”) ; 101 set ( l , ” I n t e r p r e t e r ” , ”LaTeX”) ; 102 xlim ( [ min(Y, [ ] , ” a l l ”) max(Y, [ ] , ” a l l ”) ] ) ; 103 xlabel (” Gate Voltage ( $V {G}$ ) (V) ” , ” I n t e r p r e t e r ” , ”LaTeX”) ; 104 ylabel (”Mean Resistance ($R$) ( $\Omega$) ” , ” I n t e r p r e t e r ” , ”LaTeX”) ; 105 33