Modeling and Forecasting Electricity Loads and Prices: A Statistical Approach" by Rafał Weron, p

源代码在线查看: onlyone.m

软件大小: 612 K
上传用户: sjb545893912
关键词: Forecasting Electricity Statistical and
下载地址: 免注册下载 普通下载 VIP

相关代码

				function onlyone(varargin);
				%ONLYONE Sets only one active radiobutton.
				%	ONLYONE(VARARGIN) turns on the first radiobutton in VARARGIN and turns
				%   off all the remaining radiobuttons.
				
				%   Written by Adam Misiorek and Rafal Weron (2006.09.22)
				%   Copyright (c) 2006 by Rafal Weron
				
				set(varargin{1},'value',1);
				for i=2:nargin
				    set(varargin{i},'value',0);
				end;			

相关资源