ºÝºÝߣshows by User: shameeraku / http://www.slideshare.net/images/logo.gif ºÝºÝߣshows by User: shameeraku / Sun, 15 Jan 2017 12:29:08 GMT ºÝºÝߣShare feed for ºÝºÝߣshows by User: shameeraku User Defined Functions in MATLAB Part-4 /slideshow/user-defined-functions-in-matlab-part4/71029430 userdefinedfunctionsinmatlabpart4-170115122908
A MATLAB function that accepts another function as an input is called a function function. Function handles are used for passing functions to function functions. Syntax for function function is same as simple functions, but one or more input arguments will be function handles. Multiple functions within one function file is called local function. Name of function file should be name of main function. Main function can be called from the command window or any other function. Local functions are typed in any order after the main function. Local functions are only visible to other functions in the same file. A private function is a function residing in a sub directory with the name private. Private functions are visible only to functions in the parent directory. ]]>

A MATLAB function that accepts another function as an input is called a function function. Function handles are used for passing functions to function functions. Syntax for function function is same as simple functions, but one or more input arguments will be function handles. Multiple functions within one function file is called local function. Name of function file should be name of main function. Main function can be called from the command window or any other function. Local functions are typed in any order after the main function. Local functions are only visible to other functions in the same file. A private function is a function residing in a sub directory with the name private. Private functions are visible only to functions in the parent directory. ]]>
Sun, 15 Jan 2017 12:29:08 GMT /slideshow/user-defined-functions-in-matlab-part4/71029430 shameeraku@slideshare.net(shameeraku) User Defined Functions in MATLAB Part-4 shameeraku A MATLAB function that accepts another function as an input is called a function function. Function handles are used for passing functions to function functions. Syntax for function function is same as simple functions, but one or more input arguments will be function handles. Multiple functions within one function file is called local function. Name of function file should be name of main function. Main function can be called from the command window or any other function. Local functions are typed in any order after the main function. Local functions are only visible to other functions in the same file. A private function is a function residing in a sub directory with the name private. Private functions are visible only to functions in the parent directory. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart4-170115122908-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> A MATLAB function that accepts another function as an input is called a function function. Function handles are used for passing functions to function functions. Syntax for function function is same as simple functions, but one or more input arguments will be function handles. Multiple functions within one function file is called local function. Name of function file should be name of main function. Main function can be called from the command window or any other function. Local functions are typed in any order after the main function. Local functions are only visible to other functions in the same file. A private function is a function residing in a sub directory with the name private. Private functions are visible only to functions in the parent directory.
User Defined Functions in MATLAB Part-4 from Shameer Ahmed Koya
]]>
1999 3 https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart4-170115122908-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Anonymous and Inline Functions in MATLAB /slideshow/anonymous-and-inline-functions-in-matlab/70657670 userdefinedfunctionsinmatlabpart3-170104083603
MATLAB's anonymous functions provide an easy way to specify a function. An anonymous function is a function defined without using a separate function file. It is a MATLAB feature that lets you define a mathematical expression of one or more inputs and either assign that expression to a function. This method is good for relatively simple functions that will not be used that often and that can be written in a single expression. The inline command lets you create a function of any number of variables by giving a string containing the function followed by a series of strings denoting the order of the input variables. It is similar to an Anonymous Function]]>

MATLAB's anonymous functions provide an easy way to specify a function. An anonymous function is a function defined without using a separate function file. It is a MATLAB feature that lets you define a mathematical expression of one or more inputs and either assign that expression to a function. This method is good for relatively simple functions that will not be used that often and that can be written in a single expression. The inline command lets you create a function of any number of variables by giving a string containing the function followed by a series of strings denoting the order of the input variables. It is similar to an Anonymous Function]]>
Wed, 04 Jan 2017 08:36:03 GMT /slideshow/anonymous-and-inline-functions-in-matlab/70657670 shameeraku@slideshare.net(shameeraku) Anonymous and Inline Functions in MATLAB shameeraku MATLAB's anonymous functions provide an easy way to specify a function. An anonymous function is a function defined without using a separate function file. It is a MATLAB feature that lets you define a mathematical expression of one or more inputs and either assign that expression to a function. This method is good for relatively simple functions that will not be used that often and that can be written in a single expression. The inline command lets you create a function of any number of variables by giving a string containing the function followed by a series of strings denoting the order of the input variables. It is similar to an Anonymous Function <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart3-170104083603-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> MATLAB&#39;s anonymous functions provide an easy way to specify a function. An anonymous function is a function defined without using a separate function file. It is a MATLAB feature that lets you define a mathematical expression of one or more inputs and either assign that expression to a function. This method is good for relatively simple functions that will not be used that often and that can be written in a single expression. The inline command lets you create a function of any number of variables by giving a string containing the function followed by a series of strings denoting the order of the input variables. It is similar to an Anonymous Function
Anonymous and Inline Functions in MATLAB from Shameer Ahmed Koya
]]>
4302 6 https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart3-170104083603-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
User Defined Functions in MATLAB part 2 /slideshow/user-defined-functions-in-matlab-part-2/70443497 userdefinedfunctionsinmatlabpart2-161226110555
Previous post we discussed what is a user defined function in MATLAB. This lecture we will discuss how to define a function and how to call the function in a script. Components of a function is discussed in the previous lecture. The first statement in a function must be function definition.The basic syntax of a function definition is: function[a, b, c]= basicmath(x,y) Basically a function accepts an input vector, perform the operation, and returns a result. The sample function given has two input variables and three output variables. But we can also have functions without input or/and output.]]>

Previous post we discussed what is a user defined function in MATLAB. This lecture we will discuss how to define a function and how to call the function in a script. Components of a function is discussed in the previous lecture. The first statement in a function must be function definition.The basic syntax of a function definition is: function[a, b, c]= basicmath(x,y) Basically a function accepts an input vector, perform the operation, and returns a result. The sample function given has two input variables and three output variables. But we can also have functions without input or/and output.]]>
Mon, 26 Dec 2016 11:05:54 GMT /slideshow/user-defined-functions-in-matlab-part-2/70443497 shameeraku@slideshare.net(shameeraku) User Defined Functions in MATLAB part 2 shameeraku Previous post we discussed what is a user defined function in MATLAB. This lecture we will discuss how to define a function and how to call the function in a script. Components of a function is discussed in the previous lecture. The first statement in a function must be function definition.The basic syntax of a function definition is: function[a, b, c]= basicmath(x,y) Basically a function accepts an input vector, perform the operation, and returns a result. The sample function given has two input variables and three output variables. But we can also have functions without input or/and output. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart2-161226110555-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> Previous post we discussed what is a user defined function in MATLAB. This lecture we will discuss how to define a function and how to call the function in a script. Components of a function is discussed in the previous lecture. The first statement in a function must be function definition.The basic syntax of a function definition is: function[a, b, c]= basicmath(x,y) Basically a function accepts an input vector, perform the operation, and returns a result. The sample function given has two input variables and three output variables. But we can also have functions without input or/and output.
User Defined Functions in MATLAB part 2 from Shameer Ahmed Koya
]]>
2673 4 https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart2-161226110555-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
User defined Functions in MATLAB Part 1 /shameeraku/user-defined-functions-in-matlab-part-1 userdefinedfunctionsinmatlabpart1-161130090612
User-defined functions are similar to the MATLAB pre-defined functions. A function is a MATLAB program that can accept inputs and produce outputs. A function can be called or executed by another program or function. Code for a function is done in an Editor window or any text editor same way as script and saved as m-file. The m-file must have the same name as the function.]]>

User-defined functions are similar to the MATLAB pre-defined functions. A function is a MATLAB program that can accept inputs and produce outputs. A function can be called or executed by another program or function. Code for a function is done in an Editor window or any text editor same way as script and saved as m-file. The m-file must have the same name as the function.]]>
Wed, 30 Nov 2016 09:06:12 GMT /shameeraku/user-defined-functions-in-matlab-part-1 shameeraku@slideshare.net(shameeraku) User defined Functions in MATLAB Part 1 shameeraku User-defined functions are similar to the MATLAB pre-defined functions. A function is a MATLAB program that can accept inputs and produce outputs. A function can be called or executed by another program or function. Code for a function is done in an Editor window or any text editor same way as script and saved as m-file. The m-file must have the same name as the function. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart1-161130090612-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> User-defined functions are similar to the MATLAB pre-defined functions. A function is a MATLAB program that can accept inputs and produce outputs. A function can be called or executed by another program or function. Code for a function is done in an Editor window or any text editor same way as script and saved as m-file. The m-file must have the same name as the function.
User defined Functions in MATLAB Part 1 from Shameer Ahmed Koya
]]>
3082 3 https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart1-161130090612-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
MATLAB Programming - Loop Control Part 2 /slideshow/matlab-programming-loop-control-part-2/69391918 matlabscriptloopcontrol2-161122055757
This lecture discuss more about Loop control including - Switch – case commands - Nested lops - break command - continue command ]]>

This lecture discuss more about Loop control including - Switch – case commands - Nested lops - break command - continue command ]]>
Tue, 22 Nov 2016 05:57:57 GMT /slideshow/matlab-programming-loop-control-part-2/69391918 shameeraku@slideshare.net(shameeraku) MATLAB Programming - Loop Control Part 2 shameeraku This lecture discuss more about Loop control including - Switch – case commands - Nested lops - break command - continue command <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptloopcontrol2-161122055757-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> This lecture discuss more about Loop control including - Switch – case commands - Nested lops - break command - continue command
MATLAB Programming - Loop Control Part 2 from Shameer Ahmed Koya
]]>
2391 2 https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptloopcontrol2-161122055757-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Matlab Script - Loop Control /slideshow/matlab-script-loop-control/67616235 matlabscriptloopcontrol-161025081856
In this lecture we will discuss about another flow control method – Loop control. A loop control is used to execute a set of commands repeatedly The set of commands is called the body of the loop MATLAB has two loop control techniques Counted loops - executes commands a specified number of times Conditional loops - executes commands as long as a specified expression is true]]>

In this lecture we will discuss about another flow control method – Loop control. A loop control is used to execute a set of commands repeatedly The set of commands is called the body of the loop MATLAB has two loop control techniques Counted loops - executes commands a specified number of times Conditional loops - executes commands as long as a specified expression is true]]>
Tue, 25 Oct 2016 08:18:56 GMT /slideshow/matlab-script-loop-control/67616235 shameeraku@slideshare.net(shameeraku) Matlab Script - Loop Control shameeraku In this lecture we will discuss about another flow control method – Loop control. A loop control is used to execute a set of commands repeatedly The set of commands is called the body of the loop MATLAB has two loop control techniques Counted loops - executes commands a specified number of times Conditional loops - executes commands as long as a specified expression is true <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptloopcontrol-161025081856-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> In this lecture we will discuss about another flow control method – Loop control. A loop control is used to execute a set of commands repeatedly The set of commands is called the body of the loop MATLAB has two loop control techniques Counted loops - executes commands a specified number of times Conditional loops - executes commands as long as a specified expression is true
Matlab Script - Loop Control from Shameer Ahmed Koya
]]>
2829 5 https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptloopcontrol-161025081856-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Conditional Control in MATLAB Scripts /slideshow/conditional-control-in-matlab-scripts/66901187 matlabscriptsflowcontrol-161008165343
In this lecture we discuss more about programming in MATLAB. One main section in programming is flow control. There are many flow control commands in MATLAB. In this lecture we discuss the conditional flow control commands. Conditional statements are commands that allows MATLAB to decide whether or not to execute some code that follows the statement Conditional statements use relational operators like ==,~=,>,&lt; (Note that are all scalar tests) ]]>

In this lecture we discuss more about programming in MATLAB. One main section in programming is flow control. There are many flow control commands in MATLAB. In this lecture we discuss the conditional flow control commands. Conditional statements are commands that allows MATLAB to decide whether or not to execute some code that follows the statement Conditional statements use relational operators like ==,~=,>,&lt; (Note that are all scalar tests) ]]>
Sat, 08 Oct 2016 16:53:43 GMT /slideshow/conditional-control-in-matlab-scripts/66901187 shameeraku@slideshare.net(shameeraku) Conditional Control in MATLAB Scripts shameeraku In this lecture we discuss more about programming in MATLAB. One main section in programming is flow control. There are many flow control commands in MATLAB. In this lecture we discuss the conditional flow control commands. Conditional statements are commands that allows MATLAB to decide whether or not to execute some code that follows the statement Conditional statements use relational operators like ==,~=,>,&lt; (Note that are all scalar tests) <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptsflowcontrol-161008165343-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> In this lecture we discuss more about programming in MATLAB. One main section in programming is flow control. There are many flow control commands in MATLAB. In this lecture we discuss the conditional flow control commands. Conditional statements are commands that allows MATLAB to decide whether or not to execute some code that follows the statement Conditional statements use relational operators like ==,~=,&gt;,&amp;lt; (Note that are all scalar tests)
Conditional Control in MATLAB Scripts from Shameer Ahmed Koya
]]>
1965 6 https://cdn.slidesharecdn.com/ss_thumbnails/matlabscriptsflowcontrol-161008165343-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
MATLAB Scripts - Examples /slideshow/matlab-scripts-examples/66246226 samplescripts-160921073416
This lecture we will do some practice on Basic MATLAB Scripts. We will start with simple scripts and will discuss some electrical engineering applications. Applications include simple electrical calculations and electrical machine models.]]>

This lecture we will do some practice on Basic MATLAB Scripts. We will start with simple scripts and will discuss some electrical engineering applications. Applications include simple electrical calculations and electrical machine models.]]>
Wed, 21 Sep 2016 07:34:16 GMT /slideshow/matlab-scripts-examples/66246226 shameeraku@slideshare.net(shameeraku) MATLAB Scripts - Examples shameeraku This lecture we will do some practice on Basic MATLAB Scripts. We will start with simple scripts and will discuss some electrical engineering applications. Applications include simple electrical calculations and electrical machine models. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/samplescripts-160921073416-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> This lecture we will do some practice on Basic MATLAB Scripts. We will start with simple scripts and will discuss some electrical engineering applications. Applications include simple electrical calculations and electrical machine models.
MATLAB Scripts - Examples from Shameer Ahmed Koya
]]>
4828 6 https://cdn.slidesharecdn.com/ss_thumbnails/samplescripts-160921073416-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Introduction to Matlab Scripts /slideshow/introduction-to-matlab-scripts/65892678 matlabscripts-160910175753
MATLAB Script or programs are sequences of MATLAB commands saved in plain text files. When you type the name of the script file at the MATLAB prompt the commands in the script file are executed as if you had typed them in command window. Code for a script is done in an Editor window and saved as m-file. In case your code has errors, MATLAB will show an error message in the command window, when you try to run the program . Error message will be hyperlinked to the line in the file that caused the error.]]>

MATLAB Script or programs are sequences of MATLAB commands saved in plain text files. When you type the name of the script file at the MATLAB prompt the commands in the script file are executed as if you had typed them in command window. Code for a script is done in an Editor window and saved as m-file. In case your code has errors, MATLAB will show an error message in the command window, when you try to run the program . Error message will be hyperlinked to the line in the file that caused the error.]]>
Sat, 10 Sep 2016 17:57:53 GMT /slideshow/introduction-to-matlab-scripts/65892678 shameeraku@slideshare.net(shameeraku) Introduction to Matlab Scripts shameeraku MATLAB Script or programs are sequences of MATLAB commands saved in plain text files. When you type the name of the script file at the MATLAB prompt the commands in the script file are executed as if you had typed them in command window. Code for a script is done in an Editor window and saved as m-file. In case your code has errors, MATLAB will show an error message in the command window, when you try to run the program . Error message will be hyperlinked to the line in the file that caused the error. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabscripts-160910175753-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> MATLAB Script or programs are sequences of MATLAB commands saved in plain text files. When you type the name of the script file at the MATLAB prompt the commands in the script file are executed as if you had typed them in command window. Code for a script is done in an Editor window and saved as m-file. In case your code has errors, MATLAB will show an error message in the command window, when you try to run the program . Error message will be hyperlinked to the line in the file that caused the error.
Introduction to Matlab Scripts from Shameer Ahmed Koya
]]>
2883 3 https://cdn.slidesharecdn.com/ss_thumbnails/matlabscripts-160910175753-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
MATLAB programming tips 2 - Input and Output Commands /slideshow/matlab-programming-tips-2-input-and-output-commands/65668796 matlabprogrammingtips2-160904053754
In this lecture we will review some common input and output commands in MATLAB. These commands are discussed in detail in previous lectures.]]>

In this lecture we will review some common input and output commands in MATLAB. These commands are discussed in detail in previous lectures.]]>
Sun, 04 Sep 2016 05:37:54 GMT /slideshow/matlab-programming-tips-2-input-and-output-commands/65668796 shameeraku@slideshare.net(shameeraku) MATLAB programming tips 2 - Input and Output Commands shameeraku In this lecture we will review some common input and output commands in MATLAB. These commands are discussed in detail in previous lectures. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabprogrammingtips2-160904053754-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> In this lecture we will review some common input and output commands in MATLAB. These commands are discussed in detail in previous lectures.
MATLAB programming tips 2 - Input and Output Commands from Shameer Ahmed Koya
]]>
1783 5 https://cdn.slidesharecdn.com/ss_thumbnails/matlabprogrammingtips2-160904053754-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Matlab Programming Tips Part 1 /slideshow/matlab-programming-tips-part-1/65434532 matlabprogrammingtips1-160828112530
MATLAB program are stored as script file(.m files). This type of file contains MATLAB commands, so running it is equivalent to typing all the commands—one at a time—at the Command window prompt. You can run the file by typing its name at the Command window.]]>

MATLAB program are stored as script file(.m files). This type of file contains MATLAB commands, so running it is equivalent to typing all the commands—one at a time—at the Command window prompt. You can run the file by typing its name at the Command window.]]>
Sun, 28 Aug 2016 11:25:30 GMT /slideshow/matlab-programming-tips-part-1/65434532 shameeraku@slideshare.net(shameeraku) Matlab Programming Tips Part 1 shameeraku MATLAB program are stored as script file(.m files). This type of file contains MATLAB commands, so running it is equivalent to typing all the commands—one at a time—at the Command window prompt. You can run the file by typing its name at the Command window. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/matlabprogrammingtips1-160828112530-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> MATLAB program are stored as script file(.m files). This type of file contains MATLAB commands, so running it is equivalent to typing all the commands—one at a time—at the Command window prompt. You can run the file by typing its name at the Command window.
Matlab Programming Tips Part 1 from Shameer Ahmed Koya
]]>
1208 4 https://cdn.slidesharecdn.com/ss_thumbnails/matlabprogrammingtips1-160828112530-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
Polynomials and Curve Fitting in MATLAB /slideshow/polynomials-and-curve-fitting-in-matlab/65265597 lecture07polynimialsandcurvefitting-160823082536
Polynomials are very important mathematical tool for Engineers. In this lecture we will discuss about how to deal with Polynomials in MATLAB and one of its application, Curve Fitting.]]>

Polynomials are very important mathematical tool for Engineers. In this lecture we will discuss about how to deal with Polynomials in MATLAB and one of its application, Curve Fitting.]]>
Tue, 23 Aug 2016 08:25:36 GMT /slideshow/polynomials-and-curve-fitting-in-matlab/65265597 shameeraku@slideshare.net(shameeraku) Polynomials and Curve Fitting in MATLAB shameeraku Polynomials are very important mathematical tool for Engineers. In this lecture we will discuss about how to deal with Polynomials in MATLAB and one of its application, Curve Fitting. <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/lecture07polynimialsandcurvefitting-160823082536-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> Polynomials are very important mathematical tool for Engineers. In this lecture we will discuss about how to deal with Polynomials in MATLAB and one of its application, Curve Fitting.
Polynomials and Curve Fitting in MATLAB from Shameer Ahmed Koya
]]>
3882 5 https://cdn.slidesharecdn.com/ss_thumbnails/lecture07polynimialsandcurvefitting-160823082536-thumbnail.jpg?width=120&height=120&fit=bounds presentation Black http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
MATLAB - Aplication of Arrays and Matrices in Electrical Systems /slideshow/matlab-aplication-of-arrays-and-matrices-in-electrical-systems/65034242 lecture03aplicationofarraysandmatricesinelectricalsystems-160816082428
using Matlab to solve the linear equations and its application in electrical systems]]>

using Matlab to solve the linear equations and its application in electrical systems]]>
Tue, 16 Aug 2016 08:24:28 GMT /slideshow/matlab-aplication-of-arrays-and-matrices-in-electrical-systems/65034242 shameeraku@slideshare.net(shameeraku) MATLAB - Aplication of Arrays and Matrices in Electrical Systems shameeraku using Matlab to solve the linear equations and its application in electrical systems <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/lecture03aplicationofarraysandmatricesinelectricalsystems-160816082428-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> using Matlab to solve the linear equations and its application in electrical systems
MATLAB - Aplication of Arrays and Matrices in Electrical Systems from Shameer Ahmed Koya
]]>
686 2 https://cdn.slidesharecdn.com/ss_thumbnails/lecture03aplicationofarraysandmatricesinelectricalsystems-160816082428-thumbnail.jpg?width=120&height=120&fit=bounds presentation 000000 http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
MATLAB - Arrays and Matrices /slideshow/matlab-arrays-and-matrices/65033876 lecture02arraysandmatrices-160816081030
In MATLAB, a vector is created by assigning the elements of the vector to a variable. This can be done in several ways depending on the source of the information. —Enter an explicit list of elements  —Load matrices from external data files  —Using built-in functions  —Using own functions in M-files ]]>

In MATLAB, a vector is created by assigning the elements of the vector to a variable. This can be done in several ways depending on the source of the information. —Enter an explicit list of elements  —Load matrices from external data files  —Using built-in functions  —Using own functions in M-files ]]>
Tue, 16 Aug 2016 08:10:30 GMT /slideshow/matlab-arrays-and-matrices/65033876 shameeraku@slideshare.net(shameeraku) MATLAB - Arrays and Matrices shameeraku In MATLAB, a vector is created by assigning the elements of the vector to a variable. This can be done in several ways depending on the source of the information. —Enter an explicit list of elements  —Load matrices from external data files  —Using built-in functions  —Using own functions in M-files <img style="border:1px solid #C3E6D8;float:right;" alt="" src="https://cdn.slidesharecdn.com/ss_thumbnails/lecture02arraysandmatrices-160816081030-thumbnail.jpg?width=120&amp;height=120&amp;fit=bounds" /><br> In MATLAB, a vector is created by assigning the elements of the vector to a variable. This can be done in several ways depending on the source of the information. —Enter an explicit list of elements  —Load matrices from external data files  —Using built-in functions  —Using own functions in M-files
MATLAB - Arrays and Matrices from Shameer Ahmed Koya
]]>
4585 8 https://cdn.slidesharecdn.com/ss_thumbnails/lecture02arraysandmatrices-160816081030-thumbnail.jpg?width=120&height=120&fit=bounds presentation Black http://activitystrea.ms/schema/1.0/post http://activitystrea.ms/schema/1.0/posted 0
https://cdn.slidesharecdn.com/profile-photo-shameeraku-48x48.jpg?cb=1580279567 I am now working as Lecturer in Department of Electrical Power Engineering, Yanbu Industrial College, Royal Commission for Jubail and Yanbu, KSA. I have more than 12 years experience in university level teaching. I am member of the International Association of Engineers (IAENG); membership number is: 159725. I completed my Masters Degree in Electrical Engineering with specialization in Power System from Kerala University, India. Immediately after my graduation I worked as lecturer in A W H Engineering College, Kerala, India. After working there for five years, moved to the current job. I have published papers in national and international conferences. My areas of interest are Power Qual... electricalenggtutorial.blogspot.com https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart4-170115122908-thumbnail.jpg?width=320&height=320&fit=bounds slideshow/user-defined-functions-in-matlab-part4/71029430 User Defined Functions... https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart3-170104083603-thumbnail.jpg?width=320&height=320&fit=bounds slideshow/anonymous-and-inline-functions-in-matlab/70657670 Anonymous and Inline F... https://cdn.slidesharecdn.com/ss_thumbnails/userdefinedfunctionsinmatlabpart2-161226110555-thumbnail.jpg?width=320&height=320&fit=bounds slideshow/user-defined-functions-in-matlab-part-2/70443497 User Defined Functions...