photo

Peter Kövesdi


Last seen: 3개월 전 2016년부터 활동

Followers: 0   Following: 0

메시지

통계학

All
  • 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...

4개월 전 | 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...

6개월 전 | 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...

6개월 전 | 답변 수: 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.

4년 초과 전 | 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.

4년 초과 전 | 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 ...

5년 초과 전 | 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...

5년 초과 전 | 6

제출됨


BendTable for hoses and tubes
Calculate a bend table from IGES files containing hose or tube paths.

8년 초과 전 | 다운로드 수: 1 |