Feeds
已解决
MATLAB 101: Area of a circle
Write a MATLAB function named circle_area that accepts the radius r as an input and returns the area of the circle.
1 day 前
已回答
Write a MATLAB function that returns the square of a number.
function square = sqr(x) square = x .^ 2; % or x .* x end
Write a MATLAB function that returns the square of a number.
function square = sqr(x) square = x .^ 2; % or x .* x end
1 day 前 | 0

