Skip to content
Snippets Groups Projects
Commit 3f06705f authored by Federico Felici's avatar Federico Felici
Browse files

Update LIUQE to use addbus methods for obj

parent 8b99bff3
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ classdef SCDclass_algo
function printbuslist(obj)
list = getbuslist(obj);
fprintf('\n******* Registered buses for %s: ******\n\n',obj.modelname)
fprintf('%-15s %-15s %-50s\n\n','Name','Type','Source')
fprintf('%-25s %-15s %-50s\n\n','Name','Type','Source')
for ii=1:numel(list)
if ishandle(list(ii).source)
type = 'function';
......@@ -179,7 +179,7 @@ classdef SCDclass_algo
end
source = which([list(ii).source,'.m']);
if isempty(source), source='NOT FOUND'; end
fprintf('%-15s %-15s %-50s\n',list(ii).name,type,source);
fprintf('%-25s %-15s %-50s\n',list(ii).name,type,source);
end
fprintf('\n');
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment