-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reworked measurement import; fixed common plotting issue; cosmetics; …
…upgrade to 2023a
- Loading branch information
Showing
46 changed files
with
577 additions
and
470 deletions.
There are no files selected for viewing
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
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
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
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
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
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
...oot.type.Files/src.type.File/+events.type.File/MeasurementImportRequested.m.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info> | ||
<Category UUID="FileClassCategory"> | ||
<Label UUID="design"/> | ||
</Category> | ||
</Info> |
6 changes: 6 additions & 0 deletions
6
...urces/project/Root.type.Files/src.type.File/+helpers.type.File/getParsers.m.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info> | ||
<Category UUID="FileClassCategory"> | ||
<Label UUID="design"/> | ||
</Category> | ||
</Info> |
6 changes: 6 additions & 0 deletions
6
.../project/Root.type.Files/src.type.File/+settings.type.File/LayoutSettings.m.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info> | ||
<Category UUID="FileClassCategory"> | ||
<Label UUID="design"/> | ||
</Category> | ||
</Info> |
6 changes: 6 additions & 0 deletions
6
...es/project/Root.type.Files/src.type.File/+settings.type.File/TextSettings.m.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<Info> | ||
<Category UUID="FileClassCategory"> | ||
<Label UUID="design"/> | ||
</Category> | ||
</Info> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions
2
...ces/project/Root.type.ProjectPath/213618a8-a7aa-4474-9639-07cd1240a040.type.Reference.xml
This file was deleted.
Oops, something went wrong.
2 changes: 2 additions & 0 deletions
2
...ces/project/Root.type.ProjectPath/e93ef97a-84ce-4e40-a691-4f3aea49308d.type.Reference.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 Ref="doc/examples/fsae" Type="Relative"/> |
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
Binary file not shown.
Binary file not shown.
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,12 @@ | ||
classdef (ConstructOnLoad) MeasurementImportRequested < event.EventData | ||
properties | ||
Files cell | ||
Parser function_handle; | ||
end | ||
methods | ||
function eventData = MeasurementImportRequested(files, parser) | ||
eventData.Files = cellstr(files); | ||
eventData.Parser = parser; | ||
end | ||
end | ||
end |
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,11 @@ | ||
function [names, handles] = getParsers() | ||
metaPackageObj = meta.package.fromName('tydex.parsers'); | ||
metaClassObj = metaPackageObj.ClassList; | ||
isAbstract = [metaClassObj.Abstract]; | ||
isHidden = [metaClassObj.Hidden]; | ||
metaClassObj(isAbstract|isHidden) = []; | ||
namesFull = {metaClassObj.Name}; | ||
namesSplit = cellfun(@(x)strsplit(x,'.'), namesFull, 'UniformOutput', 0); | ||
names = cellfun(@(x)x{end}, namesSplit, 'UniformOutput', 0); | ||
handles = cellfun(@str2func, namesFull, 'UniformOutput', 0); | ||
end |
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
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
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,13 @@ | ||
classdef LayoutSettings < settings.AbstractSettings | ||
%LAYOUTSETTINGS Contains app settings for layout (e.g. default padding) | ||
properties (Constant, AbortSet) | ||
DefaultPadding double = 5*ones(1,4); | ||
DefaultButtonHeight double = 22 | ||
DefaultButtonWidthTextIcon = 110 | ||
DefaultButtonWidthOnlyText = 75 | ||
DefaultButtonWidthOnlyIcon = 25 | ||
DefaultColumnSpacing double = 10 | ||
DefaultRowSpacing double = 5 | ||
DefaultSidebarWidth double = 250 | ||
end | ||
end |
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,7 @@ | ||
classdef TextSettings < settings.AbstractSettings | ||
%LAYOUTSETTINGS Contains app settings for layout (e.g. default padding) | ||
properties (Constant, AbortSet) | ||
FontWeightPanel = 'bold' | ||
FontNamePanel = 'Helvetica' | ||
end | ||
end |
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
Oops, something went wrong.