All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Project : In a laboratory experiment, data of voltage and current has been recorded and the same is attached in an excel file ( Click on this link VI.xlsx ). Read the excel file in the Matlab program and perform the interpolation in the range of -17.3:0.1:0.9. Generate the interactive plot for the interpolated…
venkata rama subramaniam
updated on 23 Feb 2023
Project :
In a laboratory experiment, data of voltage and current has been recorded and the same is attached in an excel file ( Click on this link VI.xlsx ). Read the excel file in the Matlab program and perform the interpolation in the range of -17.3:0.1:0.9. Generate the interactive plot for the interpolated data and store them in a text file.
Key Highlights:
Deliverables:
%use xlsread command input from spreadsheet
data = xlsread('VI.xlsx');
%input data from spreadsheet first column in spreadsheet
v=data(:,1);
%input data from second column in spreadsheet
I=data(:,2);
plot(v,I,'.-b')
xlabel('voltage')
ylabel('current')
title('Generated value using interpolated')
%We set limit of x from -17.3 to 0.9
x=-17.3:0.1:0.9;
y=interp1(v,I,x);
hold on; grid on;
% Generated the interpolated data for plot.
plot(v,I,'-r',x,y)
%y is using v,I relationship generated value and save in text file.
writematrix (y,'file_1','Delimiter','tab')
% v is voltage and save in text file.
writematrix (v,'file_2')
%I is current and save in text file.
writematrix (I,'file_3')
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...
Project 2 - SiC/IGBT isolated gate driver reference design with thermal diode and sensing FET
Designing an IGBT or SiC isolated gate driver power stage with advanced protection features requires a thorough understanding of the system requirements, as well as the properties and limitations of the components being used.The power stage should support a single phase from a traction inverter and provide a high level…
27 Nov 2023 10:34 AM IST
Project 1 - 40-V to 80-V adjustable output voltage boost reference design for LIDAR applications
To design a non-synchronous boost controller: The NCV8871 is an adjustable output non−synchronous boost controller which drives an external N−channel MOSFET. The device uses peak current mode control with internal slope compensation. The IC incorporates an internal regulator that supplies charge to the gate…
23 Nov 2023 02:51 PM IST
Project - Position control of mass spring damper system
Obtain the transfer function of a mass spring damper system and use it in the model. Add a PID controller to adjust the force on mass so that its position follows a reference signal. Take m = 3.6; %kg k = 400; %N/m c = 100; %Ns/m The reference signal is shown in the following figure. Given Data:- m = 3.6 kg …
28 Mar 2023 07:27 AM IST
Project - Data Handling and Interpolation
Project : In a laboratory experiment, data of voltage and current has been recorded and the same is attached in an excel file ( Click on this link VI.xlsx ). Read the excel file in the Matlab program and perform the interpolation in the range of -17.3:0.1:0.9. Generate the interactive plot for the interpolated…
23 Feb 2023 10:32 AM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.