27 integer(c_int),
intent(inout) :: c_key_self
28 integer(c_int),
intent(in) :: nlev
29 integer(c_int),
intent(in) :: nobs
50 integer(c_int),
intent(inout) :: c_key_self
51 integer(c_int),
intent(in) :: c_key_other
73 integer(c_int),
intent(inout) :: c_key_self
95 integer(c_int),
intent(in) :: c_key_self
96 integer(c_int),
intent(in) :: c_key_other
116 integer(c_int),
intent(in) :: c_key_self
135 integer(c_int),
intent(in) :: c_key_self
136 integer(c_int),
intent(in) :: i
155 integer(c_int),
intent(in) :: c_key_self
174 integer(c_int),
intent(in) :: c_key_self
175 integer(c_int),
intent(in) :: c_key_mask
195 integer(c_int),
intent(in) :: c_key_self
196 integer(c_int),
intent(in) :: c_key_mask
216 integer(c_int),
intent(in) :: c_key_self
217 real(c_double),
intent(in) :: zz
236 integer(c_int),
intent(in) :: c_key_self
237 integer(c_int),
intent(in) :: c_key_other
257 integer(c_int),
intent(in) :: c_key_self
258 integer(c_int),
intent(in) :: c_key_other
278 integer(c_int),
intent(in) :: c_key_self
279 integer(c_int),
intent(in) :: c_key_other
299 integer(c_int),
intent(in) :: c_key_self
300 integer(c_int),
intent(in) :: c_key_other
320 integer(c_int),
intent(in) :: c_key_self
321 real(c_double),
intent(in) :: zz
322 integer(c_int),
intent(in) :: c_key_other
342 integer(c_int),
intent(in) :: c_key_self
361 type(c_ptr),
intent(in) :: c_odb
362 integer(c_int),
intent(in) :: c_self
381 integer(c_int),
intent(in) :: c_key_obsvec1
382 integer(c_int),
intent(in) :: c_key_obsvec2
383 real(c_double),
intent(inout) :: zz
386 type(
qg_obsvec),
pointer :: obsvec1,obsvec2
403 integer(c_int),
intent(in) :: c_key_self
404 real(c_double),
intent(inout) :: zmin
405 real(c_double),
intent(inout) :: zmax
406 real(c_double),
intent(inout) :: zavg
425 integer(c_int),
intent(in) :: c_key_self
426 integer(c_int),
intent(inout) :: kobs
445 integer(c_int),
intent(in) :: c_key_self
446 integer(c_int),
intent(inout) :: kobs
465 integer(c_int),
intent(in) :: c_key_self
466 integer(c_int),
intent(in) :: c_key_mask
467 integer(c_int),
intent(inout) :: kobs
488 integer(c_int),
intent(in) :: c_key_self
489 integer(c_int),
intent(in) :: c_key_mask
490 integer(c_int),
intent(in) :: nvals
491 real(c_double),
intent(out),
dimension(nvals) :: vals
subroutine qg_obsvec_invert_c(c_key_self)
Invert observation vector.
subroutine qg_obsvec_ones_c(c_key_self)
Set observation vector to ones.
subroutine qg_obsvec_clone_c(c_key_self, c_key_other)
Clone observation vector.
subroutine qg_obsvec_mask_with_missing_c(c_key_self, c_key_mask)
Mask self observation vector (set values to missing where mask is a missing value)
subroutine qg_obsvec_get_withmask_c(c_key_self, c_key_mask, vals, nvals)
Get all non-masked out observation values.
subroutine qg_obsvec_stats_c(c_key_self, zmin, zmax, zavg)
Compute observation vector statistics.
subroutine qg_obsvec_sub_c(c_key_self, c_key_other)
Subtract observation vector.
subroutine qg_obsvec_random_c(c_odb, c_self)
Generate random observation vector.
subroutine qg_obsvec_copy_c(c_key_self, c_key_other)
Copy observation vector.
subroutine qg_obsvec_dotprod_c(c_key_obsvec1, c_key_obsvec2, zz)
Compute dot product between observation vectors.
subroutine qg_obsvec_nobs_c(c_key_self, kobs)
Get number of observations (not missing)
subroutine qg_obsvec_mul_scal_c(c_key_self, zz)
Multiply observation vector with a scalar.
subroutine qg_obsvec_nobs_withmask_c(c_key_self, c_key_mask, kobs)
Get observation vector size (only non-masked observations)
subroutine qg_obsvec_zero_c(c_key_self)
Set observation vector to zero.
subroutine qg_obsvec_mul_c(c_key_self, c_key_other)
Multiply observation vector.
subroutine qg_obsvec_size_c(c_key_self, kobs)
Get observation vector size.
subroutine qg_obsvec_settomissing_ith_c(c_key_self, i)
Set i-th value of the observation vector to missing value.
subroutine qg_obsvec_mask_c(c_key_self, c_key_mask)
Mask self observation vector (set values to missing where mask is set)
subroutine qg_obsvec_add_c(c_key_self, c_key_other)
Add observation vector.
subroutine qg_obsvec_setup_c(c_key_self, nlev, nobs)
Setup observation vector.
subroutine qg_obsvec_div_c(c_key_self, c_key_other)
Divide observation vector.
subroutine qg_obsvec_delete_c(c_key_self)
Delete observation vector.
subroutine qg_obsvec_axpy_c(c_key_self, zz, c_key_other)
Apply axpy on observation vector.
subroutine, public qg_obsvec_dotprod(obsvec1, obsvec2, zz)
Compute dot product between observation vectors.
subroutine, public qg_obsvec_random(c_odb, self)
Generate random observation vector.
subroutine, public qg_obsvec_ones(self)
Set observation vector to ones.
subroutine, public qg_obsvec_mask(self, mask)
Mask observation vector (set values to missing values where mask == 1)
subroutine, public qg_obsvec_mul(self, other)
Multiply observation vector.
subroutine, public qg_obsvec_zero(self)
Set observation vector to zero.
subroutine, public qg_obsvec_settomissing_ith(self, i)
Set i-th value of observation vector to missing value.
subroutine, public qg_obsvec_delete(self)
Delete observation vector.
subroutine, public qg_obsvec_mul_scal(self, zz)
Multiply observation vector with a scalar.
type(registry_t), public qg_obsvec_registry
Linked list interface - defines registry_t type.
subroutine, public qg_obsvec_size(self, kobs)
Get observation vector size.
subroutine, public qg_obsvec_mask_with_missing(self, mask)
Mask observation vector (set values to missing values where mask == missing value)
subroutine, public qg_obsvec_clone(self, other)
Clone observation vector.
subroutine, public qg_obsvec_get_withmask(self, obsmask, vals, nvals)
Get non-missing values from observation vector into vals array.
subroutine, public qg_obsvec_div(self, other)
Divide observation vector.
subroutine, public qg_obsvec_copy(self, other)
Copy observation vector.
subroutine, public qg_obsvec_setup(self, nlev, nobs)
Linked list implementation.
subroutine, public qg_obsvec_invert(self)
Invert observation vector.
subroutine, public qg_obsvec_nobs_withmask(self, obsmask, kobs)
Get observation vector size (only non-masked observations)
subroutine, public qg_obsvec_add(self, other)
Add observation vector.
subroutine, public qg_obsvec_stats(self, zmin, zmax, zavg)
Compute observation vector statistics.
subroutine, public qg_obsvec_axpy(self, zz, other)
Apply axpy on observation vector.
subroutine, public qg_obsvec_sub(self, other)
Subtract observation vector.
subroutine, public qg_obsvec_nobs(self, kobs)
Get observation vector size.