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

📄 ga_text.m

📁 用MATLAB实现遗传算法中的好多问题
💻 M
字号:
function [handle]=text(w1,x,y,xw,yh,s,fc,bc)
% 
% Useage:
% 	[handle]=text(w1,x,y,xw,yh,s,fc,bc)
%
% Prints a text object with the following attributes
%
% window  :	w1
% position:	x,y
% size    :	xw,yh
% text    :	s
% fg col  :	fc
% bg col  :	bc
%

handle=uicontrol(w1,...
	'style','text',...
	'position',[x y xw yh],...
	'string',num2str(s),...
	'foregroundcolor',fc,...
	'backgroundcolor',bc);

⌨️ 快捷键说明

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