blob: 3de81ef66a72f79930046409dc541a2d6e198d9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
%----------------------------------------------------------------
% Returns the elements of the ABCD matrix supplied.
%
% SYNTAX: [A,B,C,D]=elems(abcd);
%----------------------------------------------------------------
function [A,B,C,D]=elems(abcd)
A=abcd(1,1);
B=abcd(1,2);
C=abcd(2,1);
D=abcd(2,2);
|