Here's the code:
```matlab
u = [1.0, 2.3, 2.9, 4.0, 4.9, 5.8, 6.5, 7.7, 8.4, 9.0];
Y = [2.0, 4.4, 5.4, 7.5, 9.1, 10.8, 12.3, 14.3, 15.8, 16.8];
plot(u, Y, 'o')
title('Y versus u')
xlabel('u')
ylabel('Y')
```
This code creates a scatter plot of Y versus u, with
Show more…