This file contains hidden or 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 | |
| # Check if interval argument is provided | |
| if [ -z "$1" ]; then | |
| echo "Usage: $0 -int <interval_in_seconds>" | |
| exit 1 | |
| fi | |
| # Extract the interval value | |
| interval=$2 |
This file contains hidden or 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
| //ImageJ macro making a tilted movie out of stack | |
| //uses shear transform + rotation | |
| //Eugene Katrukha katpyxa at gmail.com | |
| requires("1.48h"); | |
| sTitle=getTitle(); | |
| sMovieTitle=sTitle+"_tilt_movie"; | |
| setBatchMode(true); | |
| //Dialog |
This file contains hidden or 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
| //ImageJ macro making a movie (stack) of zooming on selected rectangle (ROI) | |
| //v2 Eugene Katrukha katpyxa at gmail.com | |
| //v2a Andrey Aristov: aaristov at pasteur.fr | |
| requires("1.48h"); | |
| //check if there is rectangular selection | |
| if(selectionType() ==0) | |
| { | |
| sTitle=getTitle(); | |
| sMovieTitle=sTitle+"_zoom_movie"; |
This file contains hidden or 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
| # function to do a dodged half-boxplot and jittered points next to each other | |
| # | |
| # data_in should be a data frame | |
| # factor_col should be a bare column name (not a string) | |
| # although it will work if that column is factor or a character type | |
| # numeric_col is the y axis continuous variable | |
| # offset is the width of the boxplots and jittered point cloud | |
| # | |
| # the basic approach is to draw a boxplot without the tails | |
| # (e.g. only the interquartile range) and then use segments to add the |
This file contains hidden or 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
| //ImageJ macro making a movie (stack) of zooming on selected rectangle (ROI) | |
| //Eugene Katrukha katpyxa at gmail.com | |
| requires("1.48h"); | |
| //check if there is rectangular selection | |
| if(selectionType() ==0) | |
| { | |
| sTitle=getTitle(); | |
| sMovieTitle=sTitle+"_zoom_movie"; | |
| setBatchMode(true); |
This file contains hidden or 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
| %%----------------------------------------------------------------------- | |
| %% Make your own quadrille, graph, hex, etc paper! | |
| %% Uses the pgf/TikZ package for LaTeX, which should be part of | |
| %% any modern TeX installation. | |
| %% Email: [email protected] | |
| %% Twitter: @mcnees | |
| %%----------------------------------------------------------------------- | |
| \documentclass[11pt]{article} |