List profiles
dconf dump /org/gnome/terminal/legacy/profiles:/
Determine the terminal profile string for the profile you will need. This is the terminal profile that I will export:
''' | |
matplotlib must be developer release for voxel support | |
install instructions: | |
https://matplotlib.org/devdocs/users/installing.html | |
''' | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from mpl_toolkits.mplot3d import Axes3D | |
import matplotlib.animation as manimation |
''' | |
===================================== | |
Rotating 3D voxel animation of PYPLOT | |
===================================== | |
1. Demonstrates using ``ax.voxels`` with uneven coordinates | |
2. Demonstrates rotating a 3D plot | |
3. Uses a MovieWriter directly to grab individual frames and | |
write them to a file | |
''' |
''' | |
===================================== | |
Rotating 3D voxel animation | |
===================================== | |
Demonstrates using ``ax.voxels`` with uneven coordinates | |
''' | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from mpl_toolkits.mplot3d import Axes3D |
''' | |
===================================== | |
Rotating 3D voxel animation of PYTHON | |
===================================== | |
Demonstrates using ``ax.voxels`` with uneven coordinates | |
''' | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from mpl_toolkits.mplot3d import Axes3D |
#!/bin/bash | |
THISDIR=$(pwd) | |
if [ -z "$1" ]; then | |
mode='s' #serial | |
else | |
mode='p' #parallel | |
fi |
module kinds | |
save | |
integer, parameter :: dp = selected_real_kind(15, 307) | |
end module kinds | |
program am_timed | |
use kinds, only : dp |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# ______________________________________________________________________ | |
# / \ | |
# ( Ubuntu defaults ) | |
# \______________________________________________________________________/ | |
# | |
# If not running interactively, don't do anything | |
case $- in *i*);; *) return;; esac |
# PS1 setting script, features: | |
# Regular use: (opt1/opt2 means opt1 has precedence) | |
## user@host|cmd_time/clock|pwd$exit_code/''> | |
## print in color (if available) | |
## first print user@host (green): | |
## host color is bold if SSH session. | |
## cmd_time (green|yellow|red) || clock (green): | |
## clock time or cmd_time (if cmd_time > 20s). |
! Test program for dgesvx | |
! compile command used: | |
!ifort dgesvx_tester.f90 -L/opt/intel/composer2018/mkl/lib/intel64 -lmkl_core -lmkl_intel_lp64 -lmkl_sequential -lpthread | |
program main | |
implicit none | |
external :: dgemv | |
external :: dgesv | |
external :: dgesvx | |
integer, parameter :: dp = selected_real_kind(15,300) |