Showing posts with label Matlab. Show all posts
Showing posts with label Matlab. Show all posts

Sunday, October 31, 2010

Learn Matlab - A useful matlab ebook

Download Matlab useful ebook for free

This book covers the following chapters

  1. Installing MATLAB
  2. Introduction
  3. Matrices and Arrays
  4. Overview of MATLAB Plotting
  5. Flow Control
  6. Creating Graphical User Interfaces
  7. Desktop Tools and Development Environment
  8. Introducing the Symbolic Math Toolbox
  9. Using the Symbolic Math Toolbox
Download Matlab Free ebook "Learn Matlab" by Mathworks

Read more...

MATLab Signlas and System ebook

Download MATLab free ebook "Signals and system with MATLab"
includes step by step procedure for designing analog and digital filters
This book contains the following chapters

  1. Elementary Signals
  2. Laplace Transformation
  3. Inverse Laplace Transformation
  4. Circuit Analysis with Laplace Transforms
  5. State Variables and State Equations
  6. The impulse response and convolution
  7. Fourier Series
  8. Fourier Transforms
  9. DFT and FFT algorithm
  10. Analog and digital filter
and much more useful chapters.
Each chapter contains numerous practical applications supplemented with detailed instructions for using MATLAB to obtain quick soloutions.

Download "Signals and system with MATLAB" ebook

Read more...

Thursday, April 29, 2010

Getting Started with Matlab


Download Video tutorial about Getting Started with Matlab


You can start MATLAB by double clicking on the MATLAB icon that should be on the desktop
of your computer. This brings up the window called the Command Window. This window
allows a user to enter simple commands. To clear the Command Window type clc and next press
the Enter or Return key. To perform a simple computations type a command and next press the
Enter or Return key. For instance,
s = 1 + 2
s =
3
fun = sin(pi/4)
fun =
0.7071
In the second example the trigonometric function sine and the constant are used. In MATLAB
they are named sin and pi, respectively.
Note that the results of these computations are saved in variables whose names are chosen by the
user. If they will be needed during your current MATLAB session, then you can obtain their
values typing their names and pressing the Enter or Return key. For instance,
s
s =
3
Variable name begins with a letter, followed by letters, numbers or underscores. MATLAB
recognizes only the first 31 characters of a variable name.
To change a format of numbers displayed in the Command Window you can use one of the
several formats that are available in MATLAB. The default format is called short (four digits
after the decimal point.) In order to display more digits click on File, select Preferences…, and
next select a format you wish to use. They are listed below the Numeric Format. Next click on
Apply and OK and close the current window. You can also select a new format from within the
Command Window. For instance, the following command
format long
changes a current format to the format long. To display more digits of the variable fun type
fun
fun =
0.70710678118655
To change a current format to the default one type
format short
fun
fun =
0.7071
To close MATLAB type exit in the Command Window and next press Enter or Return key. A
second way to close your current MATLAB session is to select File in the MATLAB's toolbar
and next click on Exit MATLAB option. All unsaved information residing in the MATLAB
Workspace will be lost.

There are three kinds of numbers used in MATLAB:
• integers
• real numbers
• complex numbers
Integers are enterd without the decimal point
xi = 10
xi =
10
However, the following number
xr = 10.01
xr =
10.0100
is saved as the real number. It is not our intention to discuss here machine representation of
numbers. This topic is usually included in the numerical analysis courses.
Variables realmin and realmax denote the smallest and the largest positive real numbers in
MATLAB. For instance,
realmin
ans =
2.2251e-308
Complex numbers in MATLAB are represented in rectangular form. The imaginary unit -1 is
denoted either by i or j
i
ans =
0 + 1.0000i
In addition to classes of numbers mentioned above, MATLAB has three variables representing the nonnumbers:
• -Inf
• Inf
• NaN
The –Inf and Inf are the IEEE representations for the negative and positive infinity, respectively.
Infinity is generated by overflow or by the operation of dividing by zero. The NaN stands for the
not-a-number and is obtained as a result of the mathematically undefined operations such as
0.0/0.0 or 8-8.
List of basic arithmetic operations in MATLAB include six operations

Operation Symbol

  1. addition +
  2. subtraction -
  3. multiplication *
  4. division / or \
  5. exponentiation ^
MATLAB has two division operators / - the right division and \ -
produce the same results
rd = 47/3
rd =
15.6667
ld = 47\3
ld =
0.0638

Download Video tutorial about Getting Started with Matlab

Read more...

Friday, April 16, 2010

Matlab ebooks

Matlab 70 ebooks uploaded that will cover all of the topics related to Matlab
Some of the books are

  1. Introduction to MATLAB - Sikander M. Mirza
  2. Engineering Analysis Interactive Methods and Programs with MATLAB - Y. C. Pao
  3. Engineering and Scientific Computations Using MATLAB - Sergey E. Lyshevski
  4. Environmental Modeling Using MATLAB - Ekkehard Holzbecher
  5. Essential MATLAB for Engineers and Scientists - Brian D. Hahn & Daniel T. Valentine
  6. Exploratory Data Analysis with MATLAB - Martinez and Martinez
  7. Fundamentals of Electromagnetics with Matlab - Lonngren & Savov
  8. Graphics and GUIs with MATLAB - Patrick Marchand and O. Thomas Holland
  9. Introduction to Fuzzy Logic using MatLab - Sivanandam Sumathi and Deepa
  10. Introduction to Simulink with Engineering Applications - Steven T. Karris
  11. Intuitive Probability and Random Processes Using MatLab - Steven M. Kay
  12. Kalman Filtering Theory and Practice Using MATLAB - Grewal and Andrews
  13. MathWorks Documentation - MATLAB V7 Function References
  14. MathWorks Documentation - MATLAB V7 Introductory and Programming
  15. MATLAB Primer (6th Ed) - Kermit Sigmon & Timothy A. Davis
  16. MATLAB Primer (7th Ed) - Timothy A. Davis & Kermit Sigmon
  17. MATLAB Programming - David Kuncicky
  18. MATLAB Recipes for Earth Sciences - M.H.Trauth
and much more ebooks
view more

Read more...

Thursday, April 1, 2010

MATLAB Setup & Tutorials


MATLAB® is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numeric computation. Using the MATLAB product, you can solve technical computing problems faster than with traditional programming languages, such as C, C++, and Fortran.

You can use MATLAB in a wide range of applications, including signal and image processing, communications, control design, test and measurement, financial modeling and analysis, and Computational biology. Add-on toolboxes (collections of special-purpose MATLAB functions, available separately) extend the MATLAB environment to solve particular classes of problems in these application areas.

MATLAB provides a number of features for documenting and sharing your work. You can integrate your MATLAB code with other languages and applications, and distribute your MATLAB algorithms and applications. .....view more

Read more...
Related Posts Plugin for WordPress, Blogger...

http://mosttutorials.blogspot.com/

civil engineering,electrical and other engg. software video tutorials.ebook and setups for free.... SAP2000,ETABS,SAFE,Autocad,revit Architecture,MS Project,Primavera ,Matlab,PSpice and much more

  © Blogger templates Newspaper III by Ourblogtemplates.com 2008

Back to TOP