Sunday 24 December 2017

data plotting scatter x vs y in Matlab

load plot2.txt
>> x = plot2 (:,1);
>> y = plot2 (:,2);
>> plot(x,y)
title(' I (V) curve of Blue LED at 620 Ohm')
xlabel ('V measured (V)')
ylabel ('I (mA)')