Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Euler 37 repmat #683

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Update stdlib_linalg_repmat.fypp
  • Loading branch information
Euler-37 authored Oct 27, 2022
commit aa410fe40d8b941dafc06f0df54b2fc24865531c
1 change: 1 addition & 0 deletions src/stdlib_linalg_repmat.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ contains
${t1}$, intent(in) :: a(:,:)
integer, intent(in) :: m,n
${t1}$ :: res(m*size(a,1),n*size(a,2))
integer ::i,j,k,l
associate(ma=>size(a,1),na=>size(a,2))
do j=1,n
do l=1,na
Expand Down