0% found this document useful (0 votes)
78 views5 pages

Matlab Modeling Using Objects Intro

This document provides an overview of using Matlab for modeling objects. It includes brief descriptions of Matlab keys and notes for object-oriented programming. It also defines linear time-invariant and linear time-varying systems and provides examples of Matlab code implementing a signal class for linear time-invariant systems in two different versions.

Uploaded by

ARob109
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
78 views5 pages

Matlab Modeling Using Objects Intro

This document provides an overview of using Matlab for modeling objects. It includes brief descriptions of Matlab keys and notes for object-oriented programming. It also defines linear time-invariant and linear time-varying systems and provides examples of Matlab code implementing a signal class for linear time-invariant systems in two different versions.

Uploaded by

ARob109
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Matlab Modeling Using Objects

Matlab Keys
% Type help % help class % help function % lookfor convolution % help conv % help plot % help ops % help general % help lang % b= 2 ; % constant % c = [1, 2, 5] ; % vector % d = [1, 3, 5; 7, 9, 11; 8, 8, -2]; % size(d) % length(c); %varargin: variable argument list in %varargin: variable argument list out

Matlab Notes
http://www.mathworks.com/support/2010a/matlab/7.10/demos/DevelopingClasse sOverview.html Examples C:\Program Files\MATLAB\R2010a\help\techdoc\matlab_oop

Linear Time Invariant (LTI)


continuous

Linear Time Varying (LTV)


x( t)

x( t)

h(t )

y( t )

h( ; t )

y( t )

form1 : y (t ) form 2 : y (t )

x( )h(t )d

x(t )h( )d

form 2 : y (t )

x(t )h(t; )d

1-4

DETERMINISTIC VIEW

Matlab Examples
LTI Signal Class version I: ChannelModChannelModScript

LTI Signal Class versionII: ChannelMod1ChannelModScript1

You might also like