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.

reshape3Dto2Dalong3.m 346 B

123456789101112131415
  1. function [ outmat ] = reshape3Dto2Dalong3( inmat )
  2. %RESHAPE3DTO2DALONG3 Summary of this function goes here
  3. % Detailed explanation goes here
  4. % A(:,:,1)=[1:5;6:10;11:15;16:20];
  5. % A(:,:,2)=[21:25;26:30;31:35;36:40];
  6. % A(:,:,3)=[41:45;46:50;51:55;56:60];
  7. % inmat=A;
  8. [l1,l2,l3]=size(inmat);
  9. outmat=reshape(permute(inmat,[1,3,2]),l1*l3,l2);
  10. end