photo

Bruno Teramoto


Last seen: 5 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

3 个提问
8 个回答

排名
21,191
of 300,904

声誉
2

贡献数
3 个提问
8 个回答

回答接受率
0.0%

收到投票数
1

排名
 of 21,108

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,602

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer

查看徽章

Feeds

排序方式:

已回答
Employ the subplot function to display all the plots on the same figure window.
wo = 2.5; E = 50000; L = 600; I = 30000; delx = 10; x = [0:delx:L]; y = (wo/(120*E*I*L))*(-(x.^5) + 2*L^2*x.^3 - x*L^4);...

6 years 前 | 0

已回答
Butterfly Curve. Use Subplot
t = [0:1/16:100]; x = sin(t).*(exp(cos(t))-2*cos(4*t) - (sin(t/12)).^5); y = cos(t).*(exp(cos(t))-2*cos(4*t) - (sin(t/12)).^5)...

6 years 前 | 0

提问


temperature table matlav code

6 years 前 | 1 个回答 | 0

1

个回答

提问


y(x) =ln (1/(1-x))

6 years 前 | 1 个回答 | 0

1

个回答

提问


Australia is a great place to live....

6 years 前 | 1 个回答 | 0

1

个回答

已回答
Your plot will be of q vs. t.
n = [0.0350 0.0200 0.0150 0.0300 0.0220]'; S = [0.0001 0.0002 0.0010 0.0007 0.0003]'; B = [10 8 20 24 15]'; H = [2 1 1.5 3 2....

6 years 前 | 0

已回答
Make a code that tells if a number is odd or even
x=input('Enter an integer:\n') while round(x)~=x % use sentinel while loop if you are asked to make sure that entered val...

6 years 前 | 0

已回答
Generate a plot of C vs d. and make a table
L = 1; r = 0.01; per = 8.854*10^-12; d = linspace(0.01,0.03,10)'; C = pi*per*L./log((d-r)/r); fprintf('********************...

6 years 前 | 0

已回答
Use polar to create a Butterfly curve plot
theta = [0:pi/32:8*pi]; r = exp(sin(theta)) - 2*cos(4*theta) - (sin((2*theta - pi)/24)).^5; polar(theta,r,'--r') title('butte...

6 years 前 | 0

已回答
Plot the volume for a horizontal cylinder
L = 5; r = 3; h = [0:.2:r]'; V = ((r^2*acos((r-h)/r)) - (r-h).*sqrt(2*r*h - h.^2))*L; plot(h,V) title('Horizontal Cylinder ...

6 years 前 | 1

已回答
Determine the size and contents of the following arrays. Note that the later arrays may depend on the definitions of arrays defined earlier in the problem.
% Problem 1 % part(a) a = 2:3:8; n = size(a); disp('Problem 1 part (a)') disp('size') disp(n) disp('value') disp(a) %...

6 years 前 | 0