Answer:
Here's the MATLAB code to create the table:
% Create a vector of power values from 100 W to 10000 W
P = [100:100:1000, 2000:1000:10000];
% Convert power values from watts to horsepower
HP = P ./ 745.7;
% Create a table to display the results
T = table(P', HP', 'VariableNames', {'Power_W', 'Power_HP'})
This will create a table T with two columns: Power_W for power values in watts and Power_HP for power values in horsepower. The table will show the conversion of power values from 100 W to 10000 W in increments of 100 W up to 1000 W and increments of 1000 W all the way up to 10000 W.
Step-by-step explanation: