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

📄 fm_disp.m

📁 电力系统分析计算程序
💻 M
字号:
function output = fm_disp(varargin)% FM_DISP display messages%% OUTPUT = FM_DISP(VARARGIN)%%Author:    Federico Milano%Date:      11-Nov-2002%Update:    02-Feb-2003%Update:    09-Jul-2003%Version:   1.0.3%%E-mail:    Federico.Milano@uclm.es%Web-site:  http://www.uclm.es/area/gsee/Web/Federico%% Copyright (C) 2002-2008 Federico Milanoglobal Fig History Hdl Settings Theme clpsatif clpsat.init & ~clpsat.mesg  returnend% check inputs% ----------------------------------------------------------switch nargin case 0,  testo = {'   '};  colore = 1; case 1,  testo = varargin{1};  colore = 1; case 2,  testo = varargin{1};  colore = varargin{2}; otherwise,  testo = 'Improper call to function "fm_disp"';  colore = 2;end% size of input text/data% ----------------------------------------------------------[a,b] = size(testo);% format text if input is a cell array% ----------------------------------------------------------if iscell(testo) & b > 1  d = testo;  testo = cell(a,1);  testo{1,1} = '';  for i = 1:a,    for j = 1:b,      testo{i,1} = [testo{i,1},fvar([' ',d{i,j}],14)];    end  endend% actions for string/numeric input% ----------------------------------------------------------if ischar(testo),  testo = cellstr(testo);endif isnumeric(testo)  d = testo;  string = '';  testo = cell(a,1);  for i = 1:b  % liulin122    temp1 = num2str(d(:,i)');    temp2 = findstr(temp1, '.');    if ~isempty(temp2)      string = [string, ' %-13.4f'];    else      string = [string, ' %-13.0f'];    end  end  for i = 1:a,    testo{i,1} = sprintf(string,d(i,:));  endend%if isnumeric(testo)%  d = testo;%  string = '';%  testo = cell(a,1);%  for i = 1:b,%    string = [string, ' %-13.4f'];%  end%  for i = 1:a,%    testo{i,1} = sprintf(string,d(i,:));%  end%end% display last text row on the main window bar% ----------------------------------------------------------if Fig.main  switch colore   case 1,    set(Hdl.text, ...        'String', testo{end,1}, ...        'ForegroundColor', Theme.color05);   case 2,    set(Hdl.text, ...        'String', testo{end,1}, ...        'ForegroundColor', Theme.color07);    if Settings.beep, beep, end   case 3,    set(Hdl.text, ...        'String', testo{end,1}, ...        'ForegroundColor', Theme.color05);  end  drawnow;end% resize History.text cell array and display on workspace% ----------------------------------------------------------if colore < 3  History.text = [History.text; testo];  len = length(History.text);  if len > History.Max,    History.text = History.text(len-History.Max+1:end);  end  if Fig.hist ~= 0,    set(Hdl.hist, 'String', History.text);  end  if History.workspace | clpsat.init,    disp(strvcat(testo))  endend% output formatted text% ----------------------------------------------------------if nargout > 0, output = testo; end

⌨️ 快捷键说明

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