一个研究声多普勒计程仪很好的工具箱

源代码在线查看: history.m

软件大小: 2810 K
上传用户: my
关键词: 多普勒 计程仪 工具箱
下载地址: 免注册下载 普通下载 VIP

相关代码

				function [theFile] = history(theFile,thecomment)				
				%function [theFile] = history(theFile,thecomment)				%appends the history with the comment requested				%will work on any netcdf file that has the 'history' attribute								%Need to make more generic								% Written by Jessica M. Cote				% for the U.S. Geological Survey				% Coastal and Marine Geology Program				% Woods Hole, MA				% http://woodshole.er.usgs.gov/				% Please report bugs to jcote@usgs.gov								%version				%updated 10-Aug-1999 16:20:42				% revised to use lower-case "history" and update creation date				%		attribute as well 03-Aug-2000 Fran Hotchkiss
				% updated 28-Dec-2000 09:00:47 - changed format for linefeeds put into functions (ALR)
								g=netcdf(theFile,'write');								hist=g.history;				if isempty(hist)				   hist=g.History;				   hist=name(hist,'history');				end   				if isempty(hist)				   hist=g.PROG_CMNT1;				   hist=name(hist,'history');				disp(['Global Attribute "PROG_CMNT1" was changed to "history" in file' theFile]);  				end   								g.history=[thecomment hist(:)];				g.CREATION_DATE = datestr(now,0);				close(g)							

相关资源