da_save.m

来自「MATLAB遗传代码的源码 具体如何使用?希望能受到指点」· M 代码 · 共 21 行

M
21
字号
function [data_saved]=da_save(data)

%
% da_save.m
%
% USEAGE:
%
% [data_saved]=da_save(data);
%
% Displays a standard windows dialogue box and asks for
% a file name to save the data file to.
% The data file as modified by filtering etc etc is
% then saved as a plain ASCII file
%

[df_name df_path]=uiputfile('*.dat','Please select a file name');

if df_name ~= 0

	

⌨️ 快捷键说明

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