Code covered by the BSD License
-
computeAoA(sensor,arrayData)
COMPUTEAOA Estimate the direction of arrival of the sources in the
-
computeAoA(sensor,arrayData)
COMPUTEAOA Estimate the direction of arrival of the sources in the
-
hhh=vline(x,in1,in2,in3)
function h=vline(x, linetype, label)
-
hhh=vline(x,in1,in2,in3)
function h=vline(x, linetype, label)
-
hhh=vline(x,in1,in2,in3)
function h=vline(x, linetype, label)
-
hhh=vline(x,in1,in2,in3)
function h=vline(x, linetype, label)
-
hhh=vline(x,in1,in2,in3)
function h=vline(x, linetype, label)
-
sensorSignal(target, sensor)
Copyright 2008 The MathWorks, Inc.
-
sensorSignal(target, sensor)
Copyright 2008 The MathWorks, Inc.
-
movingTarget
-
sensor
Helper Sub-Functions for Class Methods
-
sensor
Helper Sub-Functions for Class Methods
-
sensor
Helper Sub Functions for Class Methods
-
target
-
target
-
target
-
target
-
analyzeData.m
-
analyzeData.m
-
analyzeData.m
-
analyzeData.m
-
analyzeData.m
-
View all files
from
Introduction to Object-Oriented Programming in MATLAB(R) Webinar
by Jiro Doke
Files from the "Introduction to Object-Oriented Programming in MATLAB(R)" Webinar.
|
| target |
classdef target < handle
%TARGET Class for representing a target
% A target class knows its angle, signal and range
% Copyright 2008 The MathWorks, Inc.
properties
AoA
range
signal
end
methods
function thisTarget = target(AoA, range, signal)
if nargin == 3
thisTarget.AoA = AoA;
thisTarget.range = range;
thisTarget.signal = signal;
end
end
function identify(thisTarget)
disp(['I am a friend, please don''t shoot!' ...
'I am arriving at ' num2str(thisTarget.AoA)]);
end
end
end
|
|
Contact us at files@mathworks.com