Hi,
To evaluate the values of 'chord' and 'thickness' at specific 'x' position, you can use MATLAB 'fnval' function.
Please refer to the steps given below to achieve this.
- Use MATLAB 'fnval' function to evaluate the chord and thickness at your desired 'x' value:
c = fnval(chord,x);
t = fnval(thickness,x);
- Calculate the height 'h' as the product of 'c' and 't':
h = c * t; % Calculate the height as the product of chord and thickness
For more details on using the fnval function, refer to the official MATLAB documentation: