photo

Bruno Teramoto


Last seen: 5年以上 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

3 質問
8 回答

ランク
21,181
of 300,953

評判
2

コントリビューション
3 質問
8 回答

回答採用率
0.0%

獲得投票数
1

ランク
 of 21,123

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,946

コントリビューション
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年以上 前 | 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年以上 前 | 0

質問


temperature table matlav code

6年以上 前 | 1 件の回答 | 0

1

回答

質問


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

6年以上 前 | 1 件の回答 | 0

1

回答

質問


Australia is a great place to live....

6年以上 前 | 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年以上 前 | 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年以上 前 | 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年以上 前 | 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年以上 前 | 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年以上 前 | 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年以上 前 | 0