統計
MATLAB Answers
7 質問
0 回答
ランク
of 171,578
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
problem about the scipt
clear all l = 25 E = 200*10^9 I = 350*10^-6 w = 6*10^3 x = input('enter length of the beam') ...
11年以上 前 | 1 件の回答 | 0
1
回答質問
How to use if statement to test if it is a integer and real number?
x = input('enter the number: '); if isreal(x) else delete x if isinteger(x) delete ...
11年以上 前 | 2 件の回答 | 0
2
回答質問
how to change it?
i =0; while (i<10) i = i+1; x = input('enter the number'); if isreal(x) ...
11年以上 前 | 1 件の回答 | 0
1
回答質問
Write an interactive script
write a script to input an integer number between 0 and 255, and output the number to the screen between the characters '< ' and...
11年以上 前 | 2 件の回答 | 0
2
回答質問
question about surf function
t = linspace(0,2,100) x = linspace(0,10,100) [X,T]=meshgrid(x,t) U = 10*sin(2*pi*(t-x/5))+2*sin(2*pi*(t+x/5)) surf(X,T,U) ...
11年以上 前 | 1 件の回答 | 0
1
回答質問
What's wrong with this script?
t = linspace(0,2,100) x = linspace(0,10,100) U(t,x) = 10*sin(2*pi*(t-x/5))+2*sin(2*pi*(t+x/5))
11年以上 前 | 2 件の回答 | 0
2
回答質問
use the nested loop to calculate the kronecker product for different size
A = round((rand(2)*11-5.5)) B = round((rand(3,4)*21-10.5)) calculate the kronecker product of AB
11年以上 前 | 2 件の回答 | 0
