Aim: To implement Set operations using linked list. Theory: Set Operation Union : Union refers to merging of two sets which maybe same or different. All the elements are unique in a set. Union is represented by "U". Union gives maximum number of elements.For example: A = {1,2,3,4,5} B = {3,4,5,7,8,9} A U B = {1,2,3,4,5,7,8,9}…
Kishan Hegde
updated on 12 Oct 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 Kishan Hegde (7)
Project 2 - Measuring distance of an object using ultrasonic sensor (HC-SR04)
AIM: The implementation of code for “Measuring distance of an object using ultrasonic distance sensor (HC-SR04). Goals: Measuring the distance of an object using Ultrasonic Distance Sensor (HC-SR04) Usage of Input Capture Mode Key Highlights of the Project: Measuring the distance traveled by the wave to the object and…
09 Sep 2023 08:54 AM IST
Project 1 - Loss calculation for a DC/DC converter-MATLAB
Aim: Design of boost converter, and calculating the loss of different components including power switching device and deriving efficiency of boost converter. This is applicable in power supply industry, electric vehicles etc where DC-DC converter is required to boost the voltage from DC source. Theory: Boost…
31 Mar 2023 04:03 AM IST
Project 1 - Interfacing a 16*2 LCD with Arduino using I2C protocol
Aim: Interfacing two lcd display using I2C protocol. Goals: Communication between Arduino and 16*2 LCD using I2C protocol. Displaying the message sent by Master and received by slave i.e. LCD display. I2C Communication(Inter-Integrated Communication) I2C is a serial protocol used on a low-speed 2-wire interface. It was…
17 Jan 2023 09:00 AM IST
Project 2 - Measuring the distance of an object using ultrasonic sensor and also smoothen the sensor data using moving average filter
In this project the implementation of code for “Measuring distance of an object using ultrasonic distance sensor (28015 Ping) and also smoothen the sensor data using moving average filter”. Goals: Measuring the distance in terms of inches of an object using Ultrasonic Distance Sensor (28015 Ping). The sensor…
26 Dec 2022 05:33 PM IST
Project - Speed Control of a Direct Current (DC) motor
Aim: To design a PID controller for a DC Motor to control it's speed. Key Highlights: Mathematical modeling from the first principles Modeling an Electrical Engineering system Simulink based modeling Control law design and test Stability of a dynamic system Deliverables: Matlab script to define modeling and control design…
02 Dec 2022 03:40 AM IST
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
Aim: To implement Set operations using linked list. Theory: Set Operation Union : Union refers to merging of two sets which maybe same or different. All the elements are unique in a set. Union is represented by "U". Union gives maximum number of elements.For example: A = {1,2,3,4,5} B = {3,4,5,7,8,9} A U B = {1,2,3,4,5,7,8,9}…
12 Oct 2022 03:31 PM IST
Project - Data Handling and Interpolation
%interpolate to find missing value; intr = xlsread('VI.xlsx'); % Read excel file v = [-17.3,-17.1,-17,-16.8,-16.5,-16,-15,-14,-12,-10,-8,-5,-2,-0.2,0.09,0.19,0.27,0.39,0.43,0.5,0.55,0.6,0.62,0.65]';i = [-28,-24,-19,-14,-9,-6,-4,-3,-2,-1.3,-1,-0.6,-0.3,-0.1,0,0,0,0.01,0.03,0.17,0.42,1.23,1.99,3.91]'; xq = [-17.3:0.1:0.9];…
26 Aug 2022 11:45 AM IST