photo

Geraint Bevan


Last seen: 2ヶ月 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

1 質問
1 回答

ランク
9,448
of 297,589

評判
4

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

回答採用率
100.0%

獲得投票数
3

ランク
 of 20,461

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 159,227

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 1
  • First Answer

バッジを表示

Feeds

表示方法

質問


pzmap(G+G) produces incorrect plot
Given a system with 2 zeros and 5 poles: s = tf('s') G = 8.75*(4*s^2+0.4*s+1)/((s/0.01+1)*(s^2+0.24*s+1)*(s^2/100+2*0.02*s/10+...

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

1

回答

回答済み
how to plot function with a sine input in Matlab (not in simulink)
Use the lsim function to apply an arbitrary input to a system. G = tf(1,[1,1]) t = [0:0.01:10] u = sin(t) [y,t] = lsim(G,u,t...

5年以上 前 | 3