Page MenuHomec4science

generate_indices.sh
No OneTemporary

File Metadata

Created
Mon, Feb 24, 12:47

generate_indices.sh

#!/bin/bash
# Generates list of indices that is used to compute the T5 coefficients.
# Run the following command:
#
# bash generage_inidces.sh > indices.in
#
#
for l in {0..10}
do
for k in {0..10}
do
for m in {0..10}
do
for p in {0..10}
do
for j in {0..10}
do
echo $l, $k, $m, $p, $j
done
done
done
done
done

Event Timeline