summaryrefslogtreecommitdiff
path: root/macros/zplane.sci
blob: bfa9285f0b8b0e95dddc2cf164f3814277cf8576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function [y] = zplane(z,p)
funcprot(0);

rhs = argn(2)

if(rhs<1 | rhs>2)
error("Wrong number of input arguments.")
end
	select(rhs)
	case 1 then
	callOctave("zplane",z)
	case 2 then
	callOctave("zplane",z,p)
	end
endfunction