zoukankan      html  css  js  c++  java
  • Matlab--保存数据,且文件以时间命名

    save (FunctionNowFilename('test', '.mat' ));

     

    %----------------------filename: FunctionNowFilename.m -----------------------

    function [ fname ] = FunctionNowFilename( pre, post )
    %NOW_FILENAME convert current time to filename
    % NOW_FILENAME returns current time to filename as:
    %           2010-02-23_093803413
    % NOW_FILENAME('pre', 'post') returns
    %           pre2010-02-23_094339313post
    % NOW_FILENAME('eion-', '.mat') returns
    %           eion-2010-02-23_094410117.mat
    % AUTHOR: TANG Houjian @ 2010_02_12 10_04
        if nargin == 0
            pre = '';
            post = '';
        elseif nargin == 1
            post = '';
        end
        t = clock; % Get current time
        fname = [pre, num2str(t(1:1), '%04d'), ...  % Year
                      num2str(t(2:3), '%02d'), '_', ...   % -month-day_
                      num2str(t(4:5), '%02d'), ...  % hour min
                      num2str(fix(t(6)*1000),   '%05d'), post]; % sec+ms
    end
    %-----------------------------end of file now_filename.m-------------------

  • 相关阅读:
    Using NAT between the vCenter Server system and ESXi/ESX hosts (1010652)
    Zabbix监控windows进程连接数
    CentOS yum [Errno 14] problem making ssl connection CentOs
    httpSecurity
    Nginx
    线程基础知识
    SqlServler
    关于数据库索引
    Https的底层原理
    Synchronized
  • 原文地址:https://www.cnblogs.com/helloweworld/p/3522585.html
Copyright © 2011-2022 走看看