The electricity generated by wind turbines annually in kilowatt-hours per year is given in a file. The amount of electricity is determined by, among other factors, the diameter of the turbine blade (in feet) and the wind velocity in mph
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:12| Question number:10.12
All Answers
total answers (1)
Ch12Ex10.m
% Read wind turbine data from a file and depict
% graphically using a 3D stem plot
load turbine.dat
stem3(turbine(:,1),turbine(:,2),turbine(:,3));
xlabel('Blade Diameter (ft)')
ylabel('Wind Velocity (mph)')
zlabel('Electricity Generated (kW-hr/yr)')
title('Wind turbine data')
need an explanation for this answer? contact us directly to get an explanation for this answer