Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • am-dept/matlab_airfoil_toolbox
1 result
Show changes
Commits on Source (1)
......@@ -65,7 +65,7 @@ function self = interpairfoil(Airfoil1, Airfoil2, weightAirfoil2)
if Airfoil1 == Airfoil2
self.name = Airfoil1.name;
self.coord = Airfoil1.Polar;
self.coord = Airfoil1.coord;
self.upper = Airfoil1.upper;
self.lower = Airfoil1.lower;
self.Polar = Airfoil1.Polar;
......
......@@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
## [4.4.2] - 2024-03-13
### Fixed
- Wrong coordinates array for interpolated Airfoil
## [4.4.1] - 2024-03-13
### Fixed
......@@ -158,7 +164,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.4.1...master
[Unreleased]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/v4.4.2...master
[4.4.2]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.4.1...v4.4.2
[4.4.1]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.4.0...v4.4.1
[4.4.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.3.0...v4.4.0
[4.3.0]: https://gitlab.uliege.be/am-dept/matlab_airfoil_toolbox/-/compare/4.2.1...v4.3.0
......