2
$\begingroup$

I try to convert this MATLAB code: From:

(useful to compute some prox of some functions):

case 3 %% 3D field %% V = cat(4, ... U.M{1}(1:end-1,:,:) + U.M{1}(2:end,:,:), ... U.M{2}(:,1:end-1,:) + U.M{2}(:,2:end,:), ... U.M{3}(:,:,1:end-1) + U.M{3}(:,:,2:end)); case 4 %% 4D field %% V = cat(5, ... U.M{1}(1:end-1,:,:,:) + U.M{1}(2:end,:,:,:), ... U.M{2}(:,1:end-1,:,:) + U.M{2}(:,2:end,:,:), ... U.M{3}(:,:,1:end-1,:) + U.M{3}(:,:,2:end,:),... U.M{4}(:,:,:,1:end-1) + U.M{4}(:,:,:,2:end)); 

"The dimension of U.M{1} is (N+1,N) while that of U.M{2} is (N,N+1) for 2D field". I would like to have the same behavior on Mathematica, without a switch case, on arbitrary dimension. I try to do some mix with Take, Drop, ... Without any success.

rank = 4; size = 30; baseDim = ConstantArray[size, rank]; U = Table[Array[Subscript[m, ##] &, ReplacePart[baseDim, k -> size + 1]], {k, 1, rank}]; 

The idea of the MATLAB code is to concatenate N sub-tensor by taking the begining of and the end of each dimension and sum them up.

Here the '4' stand for the dimension where I would like to catenate, that do the same job as "Join". This is the intuition behind the Mathematica code above. In pure Mathematica for a Tensor with Rank 4 above the special case code can look like:

Join[U[[1]][[2 ;; , ;; , ;; , ;;]] + U[[1]][[;; -2, ;; , ;; , ;; ]], U[[2]][[ ;; , 2 ;; , ;; , ;;]] + U[[2]][[;; , ;; -2, ;; , ;; ]], U[[3]][[ ;; , ;; , 2 ;; , ;;]] + U[[3]][[;; , ;; , ;; -2, ;; ]], U[[4]][[ ;; , ;; , ;; , 2 ;;]] + U[[4]][[;; , ;; , ;; , ;; -2]], 5] 

[Edit] The solution based on the answer of @Henrik-Schumacher:

With[{all = ConstantArray[All, rank]}, Table[U[[k]][[Sequence @@ ReplacePart[all, k -> 2 ;;]]] + U[[k]][[Sequence @@ ReplacePart[all, k -> ;; -2]]], {k, 1, rank}] ] 
$\endgroup$
23
  • 1
    $\begingroup$ Since most people here don't know Matlab, perhaps you could explain what the constructions do? For example, what are U, U.M, and what does "cat" do? $\endgroup$ Commented Oct 18, 2018 at 0:47
  • 1
    $\begingroup$ I am not convinced that the last code example returns what you want. Are you aware that you try to join arrays of different Dimensions? $\endgroup$ Commented Oct 18, 2018 at 6:11
  • 2
    $\begingroup$ Since you're dealing with tensor, are you aware that the Mathematica and MATLAB represents tensor in different way?: mathematica.stackexchange.com/q/10582/1871 $\endgroup$ Commented Oct 18, 2018 at 7:11
  • 1
    $\begingroup$ Then your understanding is wrong, and your new sample is not working, please look at the output carefully, it contains terms like 4 Subscript[m, 1, 1, 1, 1] + Subscript[m, 1, 1, 1, 2] + Subscript[m, 1, 1, 2, 1] + Subscript[m, 1, 2, 1, 1] + Subscript[m, 2, 1, 1, 1], which indicates the output is not the one you expect. This behavior can be simplified to the following: Join[{A[x]}, {A[x]}, 2], and your mistake will be even more obvious if you replace tmp with tmp = RandomReal[1, {3, 3, 3, 3}];. $\endgroup$ Commented Oct 19, 2018 at 7:25
  • 1
    $\begingroup$ @J.M.iscomputer-less sure it's from here: github.com/gpeyre/2013-SIIMS-ot-splitting/blob/master/code/… github.com/gpeyre/2013-SIIMS-ot-splitting/blob/master/code/… $\endgroup$ Commented Oct 19, 2018 at 18:02

1 Answer 1

3
$\begingroup$

Up to the final Join which I don't understand, the following might help:

r = 4; tmp = Array[Subscript[m, ##] &, ConstantArray[3, r]]; With[{idx = ConstantArray[All, r]}, Table[ tmp[[Sequence @@ ReplacePart[idx, i -> 2 ;;]]] + tmp[[Sequence @@ ReplacePart[idx, i -> ;; -2]]], {i, 1, r}] ] 

or

Table[Map[2 MovingAverage[#, {1, 1}] &, tmp, {i - 1}], {i, 1, r}] 
$\endgroup$
3
  • $\begingroup$ Dimension of both method give me {4} and not a tensor. $\endgroup$ Commented Oct 19, 2018 at 3:56
  • $\begingroup$ thanks that is the solution edit the original message $\endgroup$ Commented Oct 21, 2018 at 22:50
  • $\begingroup$ You're welcome. $\endgroup$ Commented Oct 21, 2018 at 22:53

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.