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
% To remove a Matlab trailing whitespace in the editor | |
% Original Author: Sam Roberts | |
% Improved by: Simone Gaiarin <[email protected]> | |
% http://stackoverflow.com/questions/19770347/how-to-auto-remove-trailing-whitespaces-on-save-in-matlab | |
% Modified by Mark Harfouche to remember cursor location | |
% | |
% | |
% Temp variable for shortcut. Give it an unusual name so it's unlikely to | |
% conflict with anything in the workspace. | |
shtcutwh__ = struct; |
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
doc=your_document_name | |
name=$(doc) | |
BUILD=build | |
FIGS_DIR=figs | |
TARGET=$(doc).pdf | |
TOPSOURCE=$(doc).tex |
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
% Mark Harfouche | |
% Copyright 2016 | |
% New BSD License | |
function d = pwdcopy() | |
d = pwd(); | |
clipboard('copy', d); | |
end |
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
clear all; | |
close all; | |
do_save = true; | |
time_start = datestr(now, 'yymmdd_HHMMSS'); | |
if do_save == false; disp('-----------------------------------'); disp('----- Warning not saving data -----'); disp('-----------------------------------'); end | |
%% Start measurements |
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.
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 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
#!/usr/bin/env python | |
############################################################################# | |
## | |
## Copyright (C) 2013 Riverbank Computing Limited. | |
## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). | |
## Contact: http://www.qt-project.org/legal | |
## | |
## This file is part of the documentation of the Qt Toolkit. |
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
# - Find an ITK installation or build tree. | |
# When ITK is found, the ITKConfig.cmake file is sourced to setup the | |
# location and configuration of ITK. Please read this file, or | |
# ITKConfig.cmake.in from the ITK source tree for the full list of | |
# definitions. Of particular interest is ITK_USE_FILE, a CMake source file | |
# that can be included to set the include directories, library directories, | |
# and preprocessor macros. In addition to the variables read from | |
# ITKConfig.cmake, this find module also defines | |
# ITK_DIR - The directory containing ITKConfig.cmake. |
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
# - Find an elastix installation or build tree. | |
# When elastix is found, the ElastixConfig.cmake file is sourced to setup the | |
# location and configuration of elastix. Please read this file, or | |
# ElastixConfig.cmake.in from the elastix source tree for the full list of | |
# definitions. Of particular interest is ELASTIX_USE_FILE, a CMake source file | |
# that can be included to set the include directories, library directories, | |
# and preprocessor macros. In addition to the variables read from | |
# ElastixConfig.cmake, this find module also defines | |
# Elastix_DIR - The directory containing ElastixConfig.cmake. |
OlderNewer