MATLAB is a high-level programming language and computing environment used for numerical computations, visualization, and programming. The document discusses MATLAB's capabilities including its toolboxes, plotting functions, control structures, M-files, and user-defined functions. MATLAB is useful for engineering and scientific calculations due to its matrix-based operations and built-in functions.
Matlab is a high-level programming language and environment used for numerical computation, visualization, and programming. The document outlines key Matlab concepts including the Matlab screen, variables, arrays, matrices, operators, plotting, flow control, m-files, and user-defined functions. Matlab allows users to analyze data, develop algorithms, and create models and applications.
This document provides an introduction to MATLAB programming. It discusses resources for the course including the course web page and slides. It then explains what MATLAB is, how to get started using it on Windows and Linux systems, and how to get help. It also covers the MATLAB desktop environment, performing calculations on the command line, entering numeric arrays, indexing into matrices, basic plotting commands, and logical indexing.
MATLAB/SIMULINK for Engineering Applications day 2:Introduction to simulinkreddyprasad reddyvari
油
The document provides an introduction to MATLAB and Simulink through a presentation. It discusses what MATLAB and Simulink are, their basic functions and capabilities, and how to get started using them. The presentation covers topics such as vectors, matrices, plotting, control structures, M-files, and writing user-defined functions. The goal is to help attendees gain basic knowledge of MATLAB/Simulink and be able to explore them on their own.
MATLAB is a numerical computing environment and programming language. It allows matrix manipulations, plotting of functions and data, implementation of algorithms, and interfacing with programs in other languages. MATLAB can be used for applications like signal processing, image processing, control systems, and computational finance. It offers advantages like ease of use, platform independence, and predefined functions. However, it can sometimes be slow and is commercial software. The MATLAB interface includes a command window, current directory, workspace, and command history. Arrays are fundamental data types in MATLAB and can be vectors, matrices, or multidimensional. Variables are used to store information in the workspace and can represent different data types. Common operations include arithmetic, functions, and following the
This document provides an introduction to MATLAB. It begins with an overview of the MATLAB environment and display windows. It then discusses getting help in MATLAB, variables, vectors, matrices, linear algebra, plotting, built-in functions, selection programming using if/else statements, M-files, user-defined functions, and specific topics. Key points covered include the MATLAB interface, basic programming constructs like variables and arrays, and tools for computation, visualization, and programming in MATLAB.
This document provides an overview of MATLAB including its history, applications, development environment, built-in functions, and toolboxes. MATLAB stands for Matrix Laboratory and was originally developed in the 1970s at the University of New Mexico to provide an interactive environment for matrix computations. It has since grown to be a comprehensive programming language and environment used widely in technical computing across many domains including engineering, science, and finance. The key components of MATLAB are its development environment, mathematical function library, programming language, graphics capabilities, and application programming interface. It also includes a variety of toolboxes that provide domain-specific functionality in areas like signal processing, neural networks, and optimization.
This document provides an overview of MATLAB, including the MATLAB desktop, variables, vectors, matrices, matrix operations, array operations, built-in functions, data visualization, flow control using if and for statements, and user-defined functions. It introduces key MATLAB concepts like the command window, workspace, and editor. It also demonstrates how to create and manipulate variables, vectors, matrices, and plots in MATLAB.
An Introduction to MATLAB for beginnersMurshida ck
油
This document provides an introduction to MATLAB, including:
- MATLAB is a program for numerical computation, originally designed for matrix operations. It has expanded capabilities for data analysis, signal processing, and other scientific tasks.
- The MATLAB desktop includes tools like the Command Window, Workspace, and Figure Window. Common commands are introduced for arithmetic, variables, arrays, strings and plots.
- Arrays in MATLAB can represent vectors and matrices. Commands are demonstrated for creating, manipulating, and performing operations on arrays.
The document discusses various mathematical functions and operations in MATLAB including:
- Rounding functions such as fix(), ceil(), floor(), and round() that round numbers in different ways.
- Modulus and remainder functions mod() and rem() that return the remainder of a division.
- Matrix indexing that allows accessing and assigning values to specific elements, rows, columns or slices of a matrix.
- Eigenvalues and eigenvectors that are solutions to the characteristic equation of a linear system.
- Logical operators such as <, <=, >, >=, ==, ~= that return logical arrays.
This document provides an introduction and overview of image processing using Matlab. It discusses the basics of Matlab including its environment, syntax, variables, vectors and matrices. It then covers image processing topics such as importing and exporting images, viewing histograms, and applying filters like box filters and linear filters to images. The document is intended to teach the fundamentals of working with images in the Matlab programming language.
This document provides an introduction and overview of MATLAB. It discusses what MATLAB is, its main features and interfaces. Some key points covered include:
- MATLAB is a computing environment for doing matrix manipulations, calculations and data analysis. It has specialized toolboxes for tasks like signal processing and system analysis.
- The main interfaces are the command window, workspace, command history and editor window. Commands can be executed directly, through script files or custom functions.
- MATLAB handles matrices and vectors natively and has extensive math and graphics functions. Basic operations include matrix/vector creation, arithmetic, plotting and flow control structures.
- Help is available through the help menu, demos and documentation. Common functions covered
This document provides an introduction to MATLAB and discusses some of its key features. It describes MATLAB as a popular language for technical computing used in engineering and science. The document then outlines topics that will be covered in the workshop, including elementary operations, vectors and matrices, element-by-element operations, graphics, scripts, functions, and flow control. It provides examples of commands in each of these areas and demonstrates how to perform basic computations and visualizations in MATLAB.
Three sentences:
The document provides an introduction to image processing and MATLAB. It defines key concepts in image processing like image formation through sampling and quantization. It also introduces various tools in MATLAB for working with digital images, such as importing/exporting images, displaying images using functions like imshow and imagesc, and performing basic operations on image matrices.
This document provides an overview of MATLAB, its applications, and how to use its features. MATLAB can be used for numerical computation and was originally designed for matrix operations. It has since expanded to include tools for data analysis, signal processing, optimization, and more. The document describes MATLAB's basic interface and commands, how to work with matrices and vectors, perform math operations and logical operations, plot functions, write M-files and functions, and save and load work. It also briefly mentions Simulink for modeling and simulating dynamic systems.
Here are the steps to solve this problem in MATLAB:
1. Create a matrix A with the marks data:
A = [24 44 36 36;
52 57 68 76;
66 53 69 73;
85 40 86 72;
15 47 25 28;
79 72 82 91];
2. Define the column labels:
subjects = {'Math','Programming','Thermodynamics','Mechanics'};
3. Find the total marks of each subject:
totals = sum(A)
4. Find the average marks of each subject:
averages = mean(A)
5. Find the highest marks scored in each subject:
maxMarks = max
- Linear algebra is important for image recognition and other fields like physics, economics, and politics. It allows analyzing relationships between multiple variables without calculus.
- Python is a good platform for linear algebra due to libraries like NumPy that allow fast processing of multi-dimensional data like matrices. It also has simple syntax without semicolons.
- Key concepts discussed include vectors, matrices, linear transformations, abstraction, and how linear algebra solves problems in fields like quantum mechanics. Comprehensions provide a concise way to generate sets, lists, and arrays in Python.
This document provides an introduction to MATLAB. It covers MATLAB basics like arithmetic, variables, vectors, matrices and built-in functions. It also discusses plotting graphs, programming in MATLAB by creating functions and scripts, and solving systems of linear equations. The document is compiled by Endalkachew Teshome from the Department of Mathematics at AMU for teaching MATLAB.
Towards typesafe deep learning in scalaTongfei Chen
油
Deep learning is predominantly done in Python, a type-unsafe language. Try changing this unfortunate fact by doing it in Scala instead! With expressive types, compile-time typechecking, and awesome DSLs, we present Nexus, a typesafe, expressive and succinct deep learning framework.
1. Introduction to MATLAB and programming
2. Workspace, variables and arrays
3. Using operators, expressions and statements
4. Repeating and decision-making
5. Different methods for input and output
6. Common functions
7. Logical vectors
8. Matrices and string arrays
9. Introduction to graphics
10. Loops
11. Custom functions and M-files
This document provides an introduction to MATLAB. It discusses that MATLAB is a high-level language for technical computing where everything is a matrix and it is easy to perform linear algebra. It describes the MATLAB desktop interface and valid variable names. It also summarizes how to perform basic operations like addition, subtraction, multiplication, etc. on matrices and vectors. Finally, it outlines various matrix operations, statistical functions, random number generation, and plotting in MATLAB.
This slide contains short introduction to different elements of functional programming along with some specific techniques with which we use functional programming in Swift.
The document provides an introduction to MATLAB, describing the main environment components like the command window and workspace. It explains basic MATLAB functions and variables, arrays, control flow statements, M-files, and common plotting and data analysis tools. Examples are given of different array operations, control structures, and building simple MATLAB functions and scripts.
Matlab is an interactive computing environment for numerical computation, visualization, and programming. The document provides an introduction and overview of Matlab, including what Matlab is, the Matlab screen interface, variables and arrays, basic math operations, plotting functions, control structures like if/else and for loops, using m-files, and writing user-defined functions. Key features of Matlab covered are the command window, workspace, command history, generating matrices and vectors, element-wise operations, relational and logical operators, and file input/output statements.
MATLAB is a high-level technical computing language where everything is represented as a matrix. It has tools for doing mathematical computations and graphics. The MATLAB desktop provides menus, toolbars, and areas to view commands, workspace, and output. MATLAB supports defining vectors and matrices, basic matrix and array operations, built-in mathematical functions, 2D plotting, annotation, discrete data plotting using stem, and dividing plotting windows into subplots. Common commands include clear to remove variables and close to remove plots.
Floating Offshore Wind in the Celtic Seapermagoveu
油
Floating offshore wind (FLOW) governance arrangements in the Celtic Sea case are changing and innovating in response to different drivers including domestic political priorities (e.g. net-zero, decarbonization, economic growth) and external shocks that emphasize the need for energy security (e.g. the war in Ukraine).
To date, the rules of the game that guide floating wind in the UK have evolved organically rather than being designed with intent, which has created policy incoherence and fragmented governance arrangements. Despite this fragmentation, the UK has a well-established offshore wind sector and is positioning itself to become a global leader in floating wind.
Marine governance arrangements are in a state of flux as new actors, resources, and rules of the game are being introduced to deliver on this aspiration. However, the absence of a clear roadmap to deliver on ambitious floating wind targets by 2030 creates uncertainty for investors, reduces the likelihood that a new floating wind sector will deliver economic and social value to the UK, and risks further misalignment between climate and nature goals.
More Related Content
Similar to MATLAB Workshop for project and research (20)
This document provides an overview of MATLAB, including the MATLAB desktop, variables, vectors, matrices, matrix operations, array operations, built-in functions, data visualization, flow control using if and for statements, and user-defined functions. It introduces key MATLAB concepts like the command window, workspace, and editor. It also demonstrates how to create and manipulate variables, vectors, matrices, and plots in MATLAB.
An Introduction to MATLAB for beginnersMurshida ck
油
This document provides an introduction to MATLAB, including:
- MATLAB is a program for numerical computation, originally designed for matrix operations. It has expanded capabilities for data analysis, signal processing, and other scientific tasks.
- The MATLAB desktop includes tools like the Command Window, Workspace, and Figure Window. Common commands are introduced for arithmetic, variables, arrays, strings and plots.
- Arrays in MATLAB can represent vectors and matrices. Commands are demonstrated for creating, manipulating, and performing operations on arrays.
The document discusses various mathematical functions and operations in MATLAB including:
- Rounding functions such as fix(), ceil(), floor(), and round() that round numbers in different ways.
- Modulus and remainder functions mod() and rem() that return the remainder of a division.
- Matrix indexing that allows accessing and assigning values to specific elements, rows, columns or slices of a matrix.
- Eigenvalues and eigenvectors that are solutions to the characteristic equation of a linear system.
- Logical operators such as <, <=, >, >=, ==, ~= that return logical arrays.
This document provides an introduction and overview of image processing using Matlab. It discusses the basics of Matlab including its environment, syntax, variables, vectors and matrices. It then covers image processing topics such as importing and exporting images, viewing histograms, and applying filters like box filters and linear filters to images. The document is intended to teach the fundamentals of working with images in the Matlab programming language.
This document provides an introduction and overview of MATLAB. It discusses what MATLAB is, its main features and interfaces. Some key points covered include:
- MATLAB is a computing environment for doing matrix manipulations, calculations and data analysis. It has specialized toolboxes for tasks like signal processing and system analysis.
- The main interfaces are the command window, workspace, command history and editor window. Commands can be executed directly, through script files or custom functions.
- MATLAB handles matrices and vectors natively and has extensive math and graphics functions. Basic operations include matrix/vector creation, arithmetic, plotting and flow control structures.
- Help is available through the help menu, demos and documentation. Common functions covered
This document provides an introduction to MATLAB and discusses some of its key features. It describes MATLAB as a popular language for technical computing used in engineering and science. The document then outlines topics that will be covered in the workshop, including elementary operations, vectors and matrices, element-by-element operations, graphics, scripts, functions, and flow control. It provides examples of commands in each of these areas and demonstrates how to perform basic computations and visualizations in MATLAB.
Three sentences:
The document provides an introduction to image processing and MATLAB. It defines key concepts in image processing like image formation through sampling and quantization. It also introduces various tools in MATLAB for working with digital images, such as importing/exporting images, displaying images using functions like imshow and imagesc, and performing basic operations on image matrices.
This document provides an overview of MATLAB, its applications, and how to use its features. MATLAB can be used for numerical computation and was originally designed for matrix operations. It has since expanded to include tools for data analysis, signal processing, optimization, and more. The document describes MATLAB's basic interface and commands, how to work with matrices and vectors, perform math operations and logical operations, plot functions, write M-files and functions, and save and load work. It also briefly mentions Simulink for modeling and simulating dynamic systems.
Here are the steps to solve this problem in MATLAB:
1. Create a matrix A with the marks data:
A = [24 44 36 36;
52 57 68 76;
66 53 69 73;
85 40 86 72;
15 47 25 28;
79 72 82 91];
2. Define the column labels:
subjects = {'Math','Programming','Thermodynamics','Mechanics'};
3. Find the total marks of each subject:
totals = sum(A)
4. Find the average marks of each subject:
averages = mean(A)
5. Find the highest marks scored in each subject:
maxMarks = max
- Linear algebra is important for image recognition and other fields like physics, economics, and politics. It allows analyzing relationships between multiple variables without calculus.
- Python is a good platform for linear algebra due to libraries like NumPy that allow fast processing of multi-dimensional data like matrices. It also has simple syntax without semicolons.
- Key concepts discussed include vectors, matrices, linear transformations, abstraction, and how linear algebra solves problems in fields like quantum mechanics. Comprehensions provide a concise way to generate sets, lists, and arrays in Python.
This document provides an introduction to MATLAB. It covers MATLAB basics like arithmetic, variables, vectors, matrices and built-in functions. It also discusses plotting graphs, programming in MATLAB by creating functions and scripts, and solving systems of linear equations. The document is compiled by Endalkachew Teshome from the Department of Mathematics at AMU for teaching MATLAB.
Towards typesafe deep learning in scalaTongfei Chen
油
Deep learning is predominantly done in Python, a type-unsafe language. Try changing this unfortunate fact by doing it in Scala instead! With expressive types, compile-time typechecking, and awesome DSLs, we present Nexus, a typesafe, expressive and succinct deep learning framework.
1. Introduction to MATLAB and programming
2. Workspace, variables and arrays
3. Using operators, expressions and statements
4. Repeating and decision-making
5. Different methods for input and output
6. Common functions
7. Logical vectors
8. Matrices and string arrays
9. Introduction to graphics
10. Loops
11. Custom functions and M-files
This document provides an introduction to MATLAB. It discusses that MATLAB is a high-level language for technical computing where everything is a matrix and it is easy to perform linear algebra. It describes the MATLAB desktop interface and valid variable names. It also summarizes how to perform basic operations like addition, subtraction, multiplication, etc. on matrices and vectors. Finally, it outlines various matrix operations, statistical functions, random number generation, and plotting in MATLAB.
This slide contains short introduction to different elements of functional programming along with some specific techniques with which we use functional programming in Swift.
The document provides an introduction to MATLAB, describing the main environment components like the command window and workspace. It explains basic MATLAB functions and variables, arrays, control flow statements, M-files, and common plotting and data analysis tools. Examples are given of different array operations, control structures, and building simple MATLAB functions and scripts.
Matlab is an interactive computing environment for numerical computation, visualization, and programming. The document provides an introduction and overview of Matlab, including what Matlab is, the Matlab screen interface, variables and arrays, basic math operations, plotting functions, control structures like if/else and for loops, using m-files, and writing user-defined functions. Key features of Matlab covered are the command window, workspace, command history, generating matrices and vectors, element-wise operations, relational and logical operators, and file input/output statements.
MATLAB is a high-level technical computing language where everything is represented as a matrix. It has tools for doing mathematical computations and graphics. The MATLAB desktop provides menus, toolbars, and areas to view commands, workspace, and output. MATLAB supports defining vectors and matrices, basic matrix and array operations, built-in mathematical functions, 2D plotting, annotation, discrete data plotting using stem, and dividing plotting windows into subplots. Common commands include clear to remove variables and close to remove plots.
Floating Offshore Wind in the Celtic Seapermagoveu
油
Floating offshore wind (FLOW) governance arrangements in the Celtic Sea case are changing and innovating in response to different drivers including domestic political priorities (e.g. net-zero, decarbonization, economic growth) and external shocks that emphasize the need for energy security (e.g. the war in Ukraine).
To date, the rules of the game that guide floating wind in the UK have evolved organically rather than being designed with intent, which has created policy incoherence and fragmented governance arrangements. Despite this fragmentation, the UK has a well-established offshore wind sector and is positioning itself to become a global leader in floating wind.
Marine governance arrangements are in a state of flux as new actors, resources, and rules of the game are being introduced to deliver on this aspiration. However, the absence of a clear roadmap to deliver on ambitious floating wind targets by 2030 creates uncertainty for investors, reduces the likelihood that a new floating wind sector will deliver economic and social value to the UK, and risks further misalignment between climate and nature goals.
Software is often designed with security as an afterthought, leading to vulnerabilities that can be exploited by attackers. This has become a critical issue as our reliance on software continues to grow.
Increasing number and sophistication of attacks (CERT vulnerability reports rising).
Software security is the practice of protecting applications from unauthorized access, modification, and destruction.
Secure software development practices.
Executives (E)
Project Managers (M)
Technical Leaders (L)
Cecille Seminario Marra, a dedicated bioengineer, graduated from Florida Gulf Coast University with a BS in Bioengineering. She has two years of experience in bioengineering and biotechnology, focusing on medical technology advancements. Cecille excels in managing projects and analyzing data using MATLAB, Python, and R.
Welcome to the April 2025 edition of WIPAC Monthly, the magazine brought to you by the LInkedIn Group Water Industry Process Automation & Control.
In this month's issue, along with all of the industries news we have a number of great articles for your edification
The first article is my annual piece looking behind the storm overflow numbers that are published each year to go into a bit more depth and look at what the numbers are actually saying.
The second article is a taster of what people will be seeing at the SWAN Annual Conference next month in Berlin and looks at the use of fibre-optic cable for leak detection and how its a technology we should be using more of
The third article, by Rob Stevens, looks at what the options are for the Continuous Water Quality Monitoring that the English Water Companies will be installing over the next year and the need to ensure that we install the right technology from the start.
Hope you enjoy the current edition,
Oliver
This factbook, using research from BloombergNEF and other sources, provides public and private sector leaders the critical information they need to accelerate the
transition to clean energy, along with all the health and economic benefits it will bring.
In this PDF document, the importance of engineering models in successful project execution is discussed. It explains how these models enhance visualization, planning, and communication. Engineering models help identify potential issues early, reducing risks and costs. Ultimately, they improve collaboration and client satisfaction by providing a clear representation of the project.
Production Planning & Control and Inventory Management.pptxVirajPasare
油
Production Planning and Control : Importance, Objectives and Functions . Inventory Management - Meaning, Types , Objectives, Selective Inventory Control : ABC Analysis
1. E. G. S. Pillay Arts and Science College
(Autonomous), Nagapattinam
Ramanujam Association organizes
One Day Workshop on MATLAB
Presentation by
Dr. M. Nuthal Srinivasan, M.E., Ph.D.,
HOD ME(CS) & Assistant Professor,
Department of ECE, E.G.S.Pillay Engineering College, Nagapattinam
3. Outline:
What is Matlab?
Matlab Screen
Variables, array, matrix, indexing
Operators (Arithmetic, relational, logical )
Display Facilities
Flow Control
Using of M-File
Writing User Defined Functions
Conclusion
4. What is Matlab?
MATRIX Laboratory
Matlab is basically a high level language which has many
specialized toolboxes for making things easier for us
How high?
Assembly
High Level
Languages such as
C, Pascal etc.
Matlab
5. Matlab Screen
Command Window
type commands
Current Directory
View folders and m-files
Workspace
View program variables
Double click on a variable
to see it in the Array Editor
Command History
view past commands
save a whole session
using diary
6. Variables
No need for types. i.e.,
All variables are created with double precision unless specified
and they are matrices.
After these statements, the variables are 1x1 matrices with
double precision
int a;
double b;
float c;
Example:
>>x=5;
>>x1=2;
7. Array, Matrix
a vector x = [1 2 5 1]
x =
1 2 5 1
a matrixy = [1 2 3; 5 1 4; 3 2 -1]
y =
1 2 3
5 1 4
3 2 -1
transpose y = x y =
1
2
5
1
8. Long Array, Matrix
t =1:10
t =
1 2 3 4 5 6 7 8 9 10
k =2:-0.5:-1
k =
2 1.5 1 0.5 0 -0.5 -1
B = [1:4; 5:8]
x =
1 2 3 4
5 6 7 8
9. Generating Vectors from functions
zeros(M,N) MxN matrix of zeros
ones(M,N) MxN matrix of ones
rand(M,N) MxN matrix of uniformly
distributed random
numbers on (0,1)
x = zeros(1,3)
x =
0 0 0
x = ones(1,3)
x =
1 1 1
x = rand(1,3)
x =
0.9501 0.2311 0.6068
10. Matrix Index
The matrix indices begin from 1 (not 0 (as in C))
The matrix indices must be positive integer
Given:
A(-2), A(0)
Error: ??? Subscript indices must either be real positive integers or logicals.
A(4,2)
Error: ??? Index exceeds matrix dimensions.
11. Concatenation of Matrices
x = [1 2], y = [4 5], z=[ 0 0]
A = [ x y]
1 2 4 5
B = [x ; y]
1 2
4 5
C = [x y ;z]
Error:
??? Error using ==> vertcat CAT arguments dimensions are not consistent.
14. Operators (Element by Element)
.* element-by-element multiplication
./element-by-element division
.^ element-by-element power
15. The use of . Element Operation
K= x^2
Erorr:
??? Error using ==> mpower Matrix must be square.
B=x*y
Erorr:
??? Error using ==> mtimes Inner matrix dimensions must agree.
A = [1 2 3; 5 1 4; 3 2 1]
A =
1 2 3
5 1 4
3 2 -1
y = A(3 ,:)
y=
3 4 -1
b = x .* y
b=
3 8 -3
c = x . / y
c=
0.33 0.5 -3
d = x .^2
d=
1 4 9
x = A(1,:)
x=
1 2 3
16. Basic Task: Plot the function sin(x) between 0x4
Create an x-array of 100 samples between 0 and 4.
Calculate sin(.) of the x-array
Plot the y-array
>>x=linspace(0,4*pi,100);
>>y=sin(x);
>>plot(y)
0 10 20 30 40 50 60 70 80 90 100
-1
-0.8
-0.6
-0.4
-0.2
0
0.2
0.4
0.6
0.8
1
17. Plot the function e-x/3
sin(x) between 0x4
Create an x-array of 100 samples between 0 and 4.
Calculate sin(.) of the x-array
Calculate e-x/3
of the x-array
Multiply the arrays y and y1
>>x=linspace(0,4*pi,100);
>>y=sin(x);
>>y1=exp(-x/3);
>>y2=y*y1;
18. Plot the function e-x/3
sin(x) between 0x4
Multiply the arrays y and y1 correctly
Plot the y2-array
>>y2=y.*y1;
>>plot(y2)
0 10 20 30 40 50 60 70 80 90 100
-0.3
-0.2
-0.1
0
0.1
0.2
0.3
0.4
0.5
0.6
0.7
20. Display Facilities
title(.)
xlabel(.)
ylabel(.)
>>title(This is the sinus function)
>>xlabel(x (secs))
>>ylabel(sin(x))
0 10 20 30 40 50 60 70 80 90 100
-1
-0.8
-0.6
-0.4
-0.2
0
0.2
0.4
0.6
0.8
1
This is the sinus function
x (secs)
sin(x)
21. Putting several graphs in one window
The subplot command creates several plots in a single window.
Here is an example:
>> t = (0:.1:2*pi)';
>> subplot(2,2,1)
>> plot(t,sin(t))
>> subplot(2,2,2)
>> plot(t,cos(t))
>> subplot(2,2,3)
>> plot(t,exp(t))
>> subplot(2,2,4)
>> plot(t,1./(1+t.^2))
22. Operators (relational, logical)
== Equal to
~= Not equal to
< Strictly smaller
> Strictly greater
<= Smaller than or equal to
>= Greater than equal to
& And operator
| Or operator
24. Control Structures
If Statement Syntax
if (Condition_1)
Matlab Commands
elseif (Condition_2)
Matlab Commands
elseif (Condition_3)
Matlab Commands
else
Matlab Commands
end
Some Dummy Examples
if ((a>3) & (b==5))
Some Matlab Commands;
end
if (a<3)
Some Matlab Commands;
elseif (b~=5)
Some Matlab Commands;
end
if (a<3)
Some Matlab Commands;
else
Some Matlab Commands;
end
25. Control Structures
For loop syntax
for i=Index_Array
Matlab Commands
end
Some Dummy Examples
for i=1:100
Some Matlab Commands;
end
for j=1:3:200
Some Matlab Commands;
end
for m=13:-0.2:-21
Some Matlab Commands;
end
for k=[0.1 0.3 -13 12 7 -9.3]
Some Matlab Commands;
end
26. Control Structures
While Loop Syntax
while (condition)
Matlab Commands
end
Dummy Example
while ((a>3) & (b==5))
Some Matlab Commands;
end
27. Use of M-File
Click to create
a new M-File
Extension .m
A text file containing script or function or program to run
28. Use of M-File
If you include ; at the
end of each statement,
result will not be shown
immediately
Save file as Denem430.m
29. Writing User Defined Functions
Functions are m-files which can be executed by specifying some
inputs and supply some desired outputs.
The code telling the Matlab that an m-file is actually a function
is
You should write this command at the beginning of the m-file
and you should save the m-file with a file name same as the
function name
function out1=functionname(in1)
function out1=functionname(in1,in2,in3)
function [out1,out2]=functionname(in1,in2)
30. Writing User Defined Functions
Examples
Write a function : out=squarer (A, ind)
Which takes the square of the input matrix if the input
indicator is equal to 1
And takes the element by element square of the input matrix
if the input indicator is equal to 2
Same Name
31. Writing User Defined Functions
Another function which takes an input array and returns the sum and product of its
elements as outputs
The function sumprod(.) can be called from command window or an m-file as
32. Writing User Defined Functions
%%square.m ---- Calculates the square of a number.
function y = square(x)
% calculate the square of the given number 'x'
% Arguments:
% x (input) value to be squared
% y (output) the result of the square
y = x*x;
end
% end of square function
33. Notes:
% is the neglect sign for Matlab (equaivalent of //
in C). Anything after it on the same line is neglected by
Matlab compiler.
Sometimes slowing down the execution is done
deliberately for observation purposes. You can use the
command pause for this purpose
pause %wait until any key
pause(3) %wait 3 seconds
34. Useful Commands
The two commands used most by Matlab
users are
>>help functionname
>>lookfor keyword