Schema
Owner
postgres
Descriptions
There is no description for function st_stddev4ma
Options
Option | Value |
---|---|
Returns |
double precision |
Language |
sql |
Parameters |
matrix double precision [] nodatamode text variadic args text [] |
Definition
CREATE OR REPLACE FUNCTION public.st_stddev4ma (
matrix double precision [],
nodatamode text,
variadic args text []
)
RETURNS double precision AS
$span$
SELECT stddev(unnest) FROM unnest($1)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |