⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 backup.m

📁 matlab处理图像的一些基本方法。其中有一部分mex程序需要安装编译
💻 M
字号:
function backup% BACKUP  Makes a backup of the files *.m, *.c, *.mexsg *.mat.%%    The backup file will be save in /usr/people/alex/backup.%    The backup file will replace the old backupfile.%%    To restore the file use:%%    uncompress archive_filename.tar.Z%    tar -xvfo  archive_filename.tar%%    Do these operations in the backup directory and copy%    the files of interest in the alex directory.%%       Claudio  2 Feb, 1995.%%% Copyright (c) 1995 by Claudio Rivetti and Mark Young% claudio@alice.uoregon.edu,    mark@alice.uoregon.edu%global AlexDiruser=getenv('USER');fname=[AlexDir 'backup/' 'backup_' user '.tar'];command=['!tar -cvf ' fname ' ' AlexDir '*'];eval(command)command=['!compress -f ' fname];eval(command)disp(' ');disp(['Backup made in: ' fname '.Z']);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -