Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

norm2d.m 189 B

12345678910111213
  1. function p=norm2d(b,x)
  2. mu(1) = b(1);
  3. mu(2) = b(2);
  4. sig(1,1) = b(3);
  5. sig(1,2) = b(4);
  6. sig(2,1) = b(4);
  7. sig(2,2) = b(5);
  8. try
  9. p = mvnpdf(x, mu, sig);
  10. catch me
  11. p = zeros(size(x(:,1)));
  12. end