Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# hh_squid.py --- | |
# Author: Subhasis Ray | |
# Created: Fri Oct 26 10:21:21 2018 (-0400) | |
# Last-Updated: Mon Oct 29 12:32:49 2018 (-0400) | |
# By: Subhasis Ray | |
# Version: $Id$ | |
# Code: | |
"""A python implementation of Hodgkin-Huxley`s Squid Giant Axon model.""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* lzcomplexity.c --- | |
* Author: Subhasis Ray | |
* Created: Thu Sep 13 11:54:21 2018 (-0400) | |
* Last-Updated: Thu Sep 13 14:01:18 2018 (-0400) | |
* By: Subhasis Ray | |
* Version: $Id$ | |
/* This implements the algorithm described by Casper and Schu"ster, 1987, Physical Review A: | |
"Easily calculable measure for the complexity of spatiotemporal patterns". */ | |
/* Code: */ | |
#include <stdio.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vtk_size_color.py --- | |
# Author: Subhasis Ray | |
# Created: Thu Aug 9 11:04:16 2018 (-0400) | |
# Last-Updated: Thu Aug 9 14:24:15 2018 (-0400) | |
# By: Subhasis Ray | |
# Version: $Id$ | |
# Code: | |
"""Test simultaneous radius and color settings in glyph. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# line_color_anim.py --- | |
# Author: Subhasis Ray | |
# Created: Thu Jul 19 16:58:58 2018 (-0400) | |
# Last-Updated: Fri Jul 20 11:18:41 2018 (-0400) | |
# By: Subhasis Ray | |
# Version: $Id$ | |
# Code: | |
"""Short example of animating line colors with color transfer function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# biomodelsclient.py --- | |
# | |
# Filename: biomodelsclient.py | |
# Description: | |
# Author: Subhasis Ray (original client & widget), | |
# GV Harsharani (pickled cache). | |
# Maintainer: | |
# Created: Tue Mar 2 07:57:39 2010 (+0530) | |
# Version: | |
# Last-Updated: Wed Nov 04 15:02:32 2015 (EDT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -lt 2 ]; then | |
echo "Usage: $0 source dest [md5file]" | |
echo "Copy source directory into dest directory and put md5 sum of the files in source in md5file. " | |
echo "If no md5 file is unspecified it is created in current directory" | |
echo | |
exit 0 | |
fi | |
source=$1 | |
target=$2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ranksurprise.py --- | |
# | |
# Filename: ranksurprise.py | |
# Description: Rank-surprise (RS) algorithm for burst identification. | |
# Author: Subhasis Ray | |
# Maintainer: | |
# Created: Thu Dec 13 15:03:05 2012 (+0530) | |
# Version: | |
# Last-Updated: Wed Dec 19 17:31:45 2012 (+0530) | |
# By: subha |