統計
All
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How can I increase accuracy at certain frequency ranges in transfer function estimation from time data
It is usually harder to get good fit for higher frequencies because the input signal is significantly attenuated at high frequen...
How can I increase accuracy at certain frequency ranges in transfer function estimation from time data
It is usually harder to get good fit for higher frequencies because the input signal is significantly attenuated at high frequen...
6年以上 前 | 0
| 採用済み
回答済み
discretizing a continuous state-space model
you can use ss function to create a discrete state space model refer to <https://www.mathworks.com/help/control/ref/ss.html>...
discretizing a continuous state-space model
you can use ss function to create a discrete state space model refer to <https://www.mathworks.com/help/control/ref/ss.html>...
6年以上 前 | 0
回答済み
Four link, planar robot arm using meshgrid/ndgrid in matlab
aren't you able to do the same thing with meshgrid and plot? I believe plot function takes each of the values of X and Y and...
Four link, planar robot arm using meshgrid/ndgrid in matlab
aren't you able to do the same thing with meshgrid and plot? I believe plot function takes each of the values of X and Y and...
6年以上 前 | 0
| 採用済み
回答済み
How to find out distance among peaks from a plot?
findpeaks gives you location of the peak as well [pks,locs] = findpeaks(PeakSig,x); dist = locs(2) - locs(1); %or whiche...
How to find out distance among peaks from a plot?
findpeaks gives you location of the peak as well [pks,locs] = findpeaks(PeakSig,x); dist = locs(2) - locs(1); %or whiche...
6年以上 前 | 0
回答済み
How to store instances of an object property in a cell array?
To add on to previous answer, add to your cell array as such result = {obj1.Expression}; result{end+1} = obj2.Experssion...
How to store instances of an object property in a cell array?
To add on to previous answer, add to your cell array as such result = {obj1.Expression}; result{end+1} = obj2.Experssion...
6年以上 前 | 0
回答済み
Colormap setting the colors i want
You can set your own colormap with the following mymap = [0 0 0.3 0 0 0.4 0 0 0.5 0 0 0.6 0 0 0.8 0 ...
Colormap setting the colors i want
You can set your own colormap with the following mymap = [0 0 0.3 0 0 0.4 0 0 0.5 0 0 0.6 0 0 0.8 0 ...
6年以上 前 | 0