Slides and Other Materials
(I plan to add codes for my projects here, and on GitHub later on..., write to me if you need codes for any of my project.)
I had the opportunity to be the graduate teaching fellow (GTF) for a course ME491A: Special Topics in Mechanical Enginering - Autonomous Vehicles, a fully hands-on course in which students built an autonomous vehicle geared towards the annual IGVC competition.
The vehicle is required to carry a 20 pound payload through grassy patches while following lanes, navigating waypoints and avoiding obstacles.Â
The course involved integration of several technologies spanning several disciplines for the making the vehicle work in a desired manner.Â
Save MATLAB figures properly in PDF format with specified dimensions programatically (no cropping needed later)
%% Run the following code after plotting the figure you intend to save as PDFÂ
% The figure properties are self-explanatory
clear figure_property;
figure_property.units = 'inches';
figure_property.format = 'pdf';
figure_property.Preview= 'none';
figure_property.Width= '8'; % Figure width on canvas
figure_property.Height= '11'; % Figure height on canvas
figure_property.Units= 'inches';
figure_property.Color= 'rgb';
figure_property.Background= 'w';
figure_property.FixedfontSize= '12';
figure_property.ScaledfontSize= 'auto';
figure_property.FontMode= 'scaled';
figure_property.FontSizeMin= '12';
figure_property.FixedLineWidth= '1';
figure_property.ScaledLineWidth= 'auto';
figure_property.LineMode= 'none';
figure_property.LineWidthMin= '0.1';
figure_property.FontName= 'Times New Roman';% Might want to change this to something that is available
figure_property.FontWeight= 'auto';
figure_property.FontAngle= 'auto';
figure_property.FontEncoding= 'latin1';
figure_property.PSLevel= '3';
figure_property.Renderer= 'painters';
figure_property.Resolution= '600';
figure_property.LineStyleMap= 'none';
figure_property.ApplyStyle= '0';
figure_property.Bounds= 'tight';
figure_property.LockAxes= 'off';
figure_property.LockAxesTicks= 'off';
figure_property.ShowUI= 'off';
figure_property.SeparateText= 'off';
chosen_figure=gcf;
set(chosen_figure,'PaperUnits','inches');
set(chosen_figure,'PaperPositionMode','auto');
set(chosen_figure,'PaperSize',[str2num(figure_property.Width) str2num(figure_property.Height)]); % Canvas Size
set(chosen_figure,'Units','inches');
hgexport(gcf,'filename.pdf',figure_property); %Set desired file name
See my answer at: https://in.mathworks.com/matlabcentral/answers/311820-save-a-figure-as-pdf#answer_737243
Type-2 Fuzzy Sets: I had written a simple MATLAB code to visualize Type-2 fuzzy sets. The code may be found at the following URL:
Sujay Kadam (03 Oct 2014). Generating Type 2 Fuzzy sets (https://www.mathworks.com/matlabcentral/fileexchange/48004-generating-type-2-fuzzy-sets), MATLAB Central File Exchange.
A video I had contributed, about Basic System Properties of LTI Discrete-Time MIMO Systems on the SysIDEA Robotics Lab's Youtube channel