clc;close all ;clear all;format long;[Filename Pathname] = uigetfile('*.xlsx','Pick a file');%select the file from the saved pathI = [Pathname Filename]; % get its pathname and filenameu=xlsread(I);% load the data to uv_V=u(:,1);% read voltage valueI_mA=u(:,2);% read current valuefigureplot(v_V,I_mA) %plot voltage vs currentz=-17.3:0.01:0.9;…
Ashitha P R
updated on 07 Jul 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 Ashitha P R (5)
Project 1 - Creation of user defined data type to implement the user interfaces for working with ‘Set’ (Mathematical Set theory) using Linked List
/* * uniinter.c * * Created on: Mar 21, 2023 * Author: hp */ /* * union.c * * Created on: Mar 21, 2023 * Author: hp */ #include<stdio.h> #include<stdlib.h> struct node { int data; struct node *link; }; int print(struct node *head) { int count=0; if(head==NULL) { printf("Linked list is empty");fflush(stdout);…
21 Mar 2023 08:34 AM IST
Project 2 Adaptive Cruise Control
Aim of the Project The main aim of this project is to develop a adaptive cruise control feature for passenger cars. Based on the distance of the vehicle in front, the speed of the car gets adjusted automatically. The objectives are: Developing Adaptive Cruise Control feature as per the Requirement Document using MATLAB…
23 Sep 2022 03:02 PM IST
Project 1 (Mini Project on Vehicle Direction Detection
Live Batch 2 Project 1 In this project there are two requirements. Two requirements are simulated using separate subsystems. The output of requirement 1 is given as one of the inputs to the second requirement. In the first requirement, the SteeringWheel_YawDegreeInput is compared with the three angular values…
22 Sep 2022 09:25 AM IST
Project - Speed Control of a Direct Current (DC) motor
The DC motor is analysed using Kirchoff's law and Newtons law. The following are the equations representing the DC motor Vs is the supply voltage. Vb is the back emf, Ia armature current, T torque, all other parameters are defined below. The block diagram is simulated using simulink blocks and the speed is obtained for…
04 Aug 2022 09:21 AM IST
Project - Data Handling and Interpolation
clc;close all ;clear all;format long;[Filename Pathname] = uigetfile('*.xlsx','Pick a file');%select the file from the saved pathI = [Pathname Filename]; % get its pathname and filenameu=xlsread(I);% load the data to uv_V=u(:,1);% read voltage valueI_mA=u(:,2);% read current valuefigureplot(v_V,I_mA) %plot voltage vs currentz=-17.3:0.01:0.9;…
07 Jul 2022 04:29 AM IST