John Alexiou

Results 5 issues of John Alexiou

I was able to convert all the *.ppm files into a single `.mpeg` file using the convert command from ImageMagick. The command is convert -delay 5 *.ppm output.mpeg or have...

Yes Fortran can accept an undeclared size array as an argument, reducing the "ceremony" needed ```fortran integer function find_gcd(nums) integer, intent(in) :: nums(:) find_gcd = gcd(minval(nums), maxval(nums)) end function ```...

Is it as simple as adding the corresponding lines in `TextSnapshotTeXCommentBlocks`? public static readonly HashSet SupportedContentTypes = new HashSet() { "CSharp", "F#", "C/C++", "Basic", "Python", "R", "Fortran" }; public static...

Fix to address #49 when creating 3D line plots A whitespace was required before the `with lines` parameter for `splot` command.

To make a 3D line plot the call to `lplot3d()` _does not require_ the keyword `with lines` as the regular 2D plot command does. For example: ```fortran call gp%lplot(x(1,:), x(2,:),...