-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d17e8aa
commit 4dc25e5
Showing
21 changed files
with
5,039 additions
and
55 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...4ed5-831e-acd2e100bb5a.type.Reference.xml → ...vg-master.type.File/fig2svg.type.File.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info Ref="fig2svg" Type="Relative" /> | ||
<Info /> |
2 changes: 2 additions & 0 deletions
2
...oject/Root.type.Files/fig2svg-master.type.File/fig2svg.type.File/1.type.DIR_SIGNIFIER.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info /> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/simulink2svg.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgBoundingBox.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgComposite.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgGaussianBlur.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgImage.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgLuminanceToAlpha.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgOffset.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
...ulinkProject/Root.type.Files/fig2svg.type.File/svgSpecularLightingDistant.m.type.File.xml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
.SimulinkProject/Root.type.Files/fig2svg.type.File/svgTurbulence.m.type.File.xml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
function result = UIverlessthan (ref_version); | ||
UIversion = version; | ||
UIversion_strparts = strsplit(UIversion,'.'); | ||
ref_version_strparts = strsplit(ref_version,'.'); | ||
|
||
for ii = 1:min([numel(UIversion_strparts),numel(ref_version_strparts)]) | ||
UIversion_part = hex2dec(UIversion_strparts{ii}); | ||
ref_version_part = hex2dec(ref_version_strparts{ii}); | ||
if UIversion_part ~= ref_version_part | ||
result = UIversion_part < ref_version_part; | ||
return | ||
end | ||
end | ||
|
||
% if everything the same but different number of parts | ||
result = numel(UIversion_strparts) < numel(ref_version_strparts); | ||
end |
Oops, something went wrong.