data = xlsread("VI.xlsx"); %excel file read vol = data(:,1); cur = data(:,2); xq = -17.3:0.1:0.9; xq1 = [-17.2 -13 -11 -9 -6 -1 0.11 0.25 0.5 0.61 0.66]; %new data in excel yq1 = interp1(vol,cur,xq); %interpolation function yq2 = interp1(vol,cur,xq1); figure(1); plot(vol,cur,'o',xq,yq1,':'); grid; title('Linear interpolation');…
Mohammed Sharafali Alan
updated on 05 Sep 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Mohammed Sharafali Alan (2)
Project - Data Handling and Interpolation
data = xlsread("VI.xlsx"); %excel file read vol = data(:,1); cur = data(:,2); xq = -17.3:0.1:0.9; xq1 = [-17.2 -13 -11 -9 -6 -1 0.11 0.25 0.5 0.61 0.66]; %new data in excel yq1 = interp1(vol,cur,xq); %interpolation function yq2 = interp1(vol,cur,xq1); figure(1); plot(vol,cur,'o',xq,yq1,':'); grid; title('Linear interpolation');…
05 Sep 2022 07:23 AM IST
Project - Analysis of a practical automotive wiring circuit
1) Genertor , Battery , Ammeter , Fuse, Breaker , Current and Voltage regulator, Distributor , Starter 2) Ammeter : Device used to measure current in the circuit. Which will be in series connection in circuit Battery : It is used to store the energy. whenever there is a need of energy, it will take…
06 Aug 2022 06:09 AM IST