Your Own Toolbox in Matlab – learn how to design, install and use a Custom Toolbox in MATLAB?

This video shows the steps to create a custom toolbox in MATLAB R2018a. This video takes some basic MATLAB functions as example and shows how to package them to create a toolbox out of it. Further this toolbox MLTBX file can be distributed to others for their usage.

This video shows how we can install the toolbox in the MATLAB environment and use the custom functions for doing specific task.

Custom toolbox is useful when we are looking for certain custom functionalities which are not available in the in-built MATLAB.

We will be glad to hear from you regarding any query, suggestions or appreciations at: programmerworld1990@gmail.com

Source code:

function outputArg1 = myProd(inputArg1,inputArg2)
%UNTITLED2 Summary of this function goes here
% Detailed explanation goes here
outputArg1 = inputArg1 * inputArg2;
end

function outputArg1 = mySum(inputArg1,inputArg2)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
outputArg1 = inputArg1 + inputArg2;
end

Leave a Reply