Just MATLAB intoduction with Examples.
Hello EveryOne, As you see, this is a project created for Gentle Introduction of MATLAB. We will try to learn some basics, so we can use it pretty Quickly.
MATLAB is Numerical computing Environment, a language & an IDE also. MATLAB is used for Engineering, Scientific Calculations. By the way MATLAB used in a Huge Range of Applications. Specifically I use it to Study Artificial Neural Network (ANN).
We need an Environment (i.e. IDE) to run our MATLAB code.
- MATLAB (OR SCILAB OR Octave)
- Basic Understanding of programming.
That's it..... We are Ready to Roll !!!
You can find a lot of Guides online or on Youtube.
MATLAB Installation
If you Don't want to Pay for it. (Yes ! MATLAB is a Paid..., But when you use it, it's really worth it.)
Use Octave. (All Matlab Syntax also Run in Octave & it's FREE.)
[Octave Installation] (https://www.gnu.org/software/octave/ "GNU Octave")
- Directly on MATLAB command window
OR - Press Ctrl+N For New Script, Type your MATLAB script in it.
Save it (Ctrl+S) with .m OR .mat Extension - Press F5 to run that Script. (If the option appears Click on 'Add to Path')
The Comment
% sign is used to give the comment in MATLAB.
- - - - ## Basic MATLAB Commands Matlab Command to clear command window. `>> clc` To Clear all variables. `>> clear` To Clear all Graph Plots. `>> clf` To Close all plots. `>> close all`
MATLAB is the Property of MathWorks Inc.