Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DCT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
graintracking
DCT
Commits
ede1d5fd
Commit
ede1d5fd
authored
6 years ago
by
Nicola Vigano
Browse files
Options
Downloads
Patches
Plain Diff
Fixed matlab's eps figures (color)
Signed-off-by:
Nicola Vigano
<
nicola.vigano@esrf.fr
>
parent
f135bbe9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
zUtil_Drawing/gtFigureSaveToFile.m
+5
-1
5 additions, 1 deletion
zUtil_Drawing/gtFigureSaveToFile.m
with
5 additions
and
1 deletion
zUtil_Drawing/gtFigureSaveToFile.m
+
5
−
1
View file @
ede1d5fd
...
...
@@ -4,6 +4,10 @@ function gtFigureSaveToFile(f, filename, extensions)
end
for ii_ext = 1:numel(extensions)
saveas(f, [filename '.' extensions{ii_ext}]);
if (strcmpi(extensions{ii_ext}, 'eps'))
saveas(f, [filename '.' extensions{ii_ext}], 'epsc');
else
saveas(f, [filename '.' extensions{ii_ext}]);
end
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment