Peter Kövesdi - MATLAB Central
photo

Peter Kövesdi


Last seen: 11ヶ月 前 2016 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB AnswersFile ExchangeFrom 03/16 to 03/25Use left and right arrows to move selectionFrom 03/16Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 質問
6 回答

File Exchange

1 ファイル

ランク
3,654
of 297,775

評判
14

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

回答採用率
0.0%

獲得投票数
7

ランク
17,479 of 20,469

評判
3

平均評価
0.00

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

ダウンロード
2

ALL TIME ダウンロード
36

ランク

of 159,513

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Revival Level 1
  • First Submission
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
convert a range vector of bin centers to bin edges. Bin Centers and edges are non-uniform
Ok, I come up with this solution: binedges = zeros(size(binmids)); binedges(1)=2*binmids(1); for i=2:length(binmids) bin...

12ヶ月 前 | 0

回答済み
Pass ByRef Array / safearray to COM server
Ahh, finally, I got it! It's a combination of two things: - I have to set `feature('COM_SafeArraySingleDim',1)` as described h...

約1年 前 | 0

質問


Pass ByRef Array / safearray to COM server
I have a COM object named "objPoints3d" and want to call it from Matlab. What is the matlab equivalent to pass an array? I try t...

約1年 前 | 1 件の回答 | 0

1

回答

回答済み
How do I split a time series?
Another option is: plot(getsamples(timeseries,ind)) where ind is the index of the samples you want.

約5年 前 | 0

回答済み
How can I find the center of gravity of a machine in SimMechanics 3.1.1 (R2009b)?
Is there any update to this? In Matlab 2017b, not even the command h=find_system(gcs,'ClassName','Body') works any more.

5年以上 前 | 0

回答済み
linkaxes with different x scales
Adams solution works well, but fails on 'Restore View' from the context menu in zoom or pan mode. To get the axes synchronized ...

6年弱 前 | 1

回答済み
How to find the index of the closest value to some number in 1D array ?
ind = interp1(x,1:length(x),val,'nearest'); also does it. But a short comparison shows disadvantages in timing: f1=@()interp1...

6年弱 前 | 6