Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121315336
cvx_expert_check.m
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 10, 00:51
Size
1 KB
Mime Type
text/html
Expires
Sat, Jul 12, 00:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27294563
Attached To
R1252 EMPoWER
cvx_expert_check.m
View Options
function cvx_expert_check( fname, varargin )
global cvx___
if cvx___.expert, return; end
if ~isempty( varargin ) && ~any(cellfun('isclass',varargin,'cvx')), return; end
url = [ 'file:///', cvx___.where, cvx___.fs, 'doc', cvx___.fs, 'advanced.html#the-successive-approximation-method' ];
fprintf( 1, [ 'CVX Warning:\n', ...
' Models involving "%s" or other functions in the log, exp, and entropy\n', ...
' family are solved using an experimental successive approximation method.\n', ...
' This method is slower and less reliable than the method CVX employs for\n', ...
' other models. Please see the section of the user''s guide entitled\n', ...
' <a href="%s">The successive approximation method</a>\n', ...
' for more details about the approach, and for instructions on how to\n', ...
' suppress this warning message in the future.\n' ], fname, url );
cvx___.expert = true;
% Note that we do *not* call cvx_save_prefs here. We only save the
% preferences if an explicit setting of "cvx_expert true" is made.
% Copyright 2005-2014 CVX Research, Inc.
% See the file LICENSE.txt for full copyright information.
% The command 'cvx_where' will show where this file is located.
Event Timeline
Log In to Comment