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.

BuildNetwork.m 324 B

123456789101112131415161718
  1. function [ WXj ] = BuildNetwork( Xj )
  2. %BUILDNETWORK Summary of this function goes here
  3. % Detailed explanation goes here
  4. nnsize = size(Xj,1);
  5. nnargs = size(Xj,2);
  6. WXj = zeros(nnsize);
  7. for ii=1:nnargs
  8. x=Xj(:,ii);
  9. WXj=max(WXj,x*x');
  10. end
  11. % imshow(1-WXj,[0 1])
  12. end