Skip to content
Snippets Groups Projects
Verified Commit 55f18d30 authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

fix(formatairfoil): issue with autosave


Signed-off-by: Thomas Lambert's avatarThomas Lambert <t.lambert@uliege.be>
parent 926bda8c
No related branches found
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ function Dat = formatairfoilcoord(varargin) ...@@ -158,7 +158,7 @@ function Dat = formatairfoilcoord(varargin)
filename = [filename{1}, '-', outputFormat]; filename = [filename{1}, '-', outputFormat];
end end
filename = appendextension(filename, '.dat'); filename = appendextension(filename, '.dat');
filename = fullfile(Dat(i).path, filename); filename = string(fullfile(Dat(i).path, filename));
header = Dat(i).airfoil; header = Dat(i).airfoil;
savetodat(filename, header, Dat(i).array); savetodat(filename, header, Dat(i).array);
end end
......
...@@ -22,8 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -22,8 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- **formatairfoilcoord**: fix issue with autosave
- **xf2mat**: add error when input is not a proper xfoil/xflr5 result - **xf2mat**: add error when input is not a proper xfoil/xflr5 result
- **plotpolar**: fix issue when unavailable data - **plotpolar**: fix issue when unavailable data
## [4.0.0] - 2022-06-09 ## [4.0.0] - 2022-06-09
......
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