Skip to content
Snippets Groups Projects
Commit 1b018c7f authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Fixed small bug in blob definition

parent 452cdf6d
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,8 @@ function blob = gtFwdSimBlobDefinition(type)
% function blob = gtFwdSimBlobDefinition(type)
%
if (~exist('type', 'var'))
type = [];
if (~exist('type', 'var') || isempty(type))
type = 'blob';
end
switch (type)
......
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