統計
All
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.
12日 前
回答済み
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
12日 前 | 0


