Statistics
RANK
3,694
of 295,569
REPUTATION
14
CONTRIBUTIONS
1 Question
6 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
7
RANK
17,289 of 20,247
REPUTATION
3
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
2
ALL TIME DOWNLOADS
36
RANK
of 154,105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
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...
8 months ago | 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...
10 months ago | 0
Question
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...
10 months ago | 1 answer | 0
1
answerHow do I split a time series?
Another option is: plot(getsamples(timeseries,ind)) where ind is the index of the samples you want.
5 years ago | 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 years ago | 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 years ago | 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 years ago | 6
Submitted
BendTable for hoses and tubes
Calculate a bend table from IGES files containing hose or tube paths.
8 years ago | 2 downloads |