Ben Petschel - MATLAB Central
photo

Ben Petschel


Last seen: 7ヶ月 前 2009 年からアクティブ

Followers: 0   Following: 0

統計

All
CodyFile ExchangeMATLAB AnswersFrom 03/09 to 04/25Use left and right arrows to move selectionFrom 03/09Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

3 質問
12 回答

File Exchange

21 ファイル

Cody

0 問題
1430 解答

ランク
1,938
of 297,972

評判
34

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

回答採用率
33.33%

獲得投票数
11

ランク
508 of 20,514

評判
3,364

平均評価
4.80

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

ダウンロード
42

ALL TIME ダウンロード
32422

ランク
76
of 159,989

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

スコア
13,231

バッジ数
12

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

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

平均評価

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

平均いいねの数

  • Thankful Level 1
  • Knowledgeable Level 2
  • Cody Challenge Master
  • Project Euler I
  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • First Answer
  • CUP Challenge Master
  • Scholar
  • ASEE Challenge Master

バッジを表示

Feeds

表示方法

回答済み
How to order values within a cell array more efficiently??
The following should work regardless of the ordering of the two rows: [~,idx] = ismember(ratings(1,:),ratings(2,:)); ord...

11年以上 前 | 2

| 採用済み

回答済み
Approximate vertex cover problem
Assuming you've got an incidence matrix A with A(u,v) if there is an edge from u to v, then a random edge could be selected with...

11年以上 前 | 0

| 採用済み

回答済み
How can I make the negative output values of the linprog optimization to be treated as if they was positive when optimizing a problem?
If you need to minimise something like abs(x), just replace x with y-z so your objective becomes to minimise y+z with y>=0 and z...

11年以上 前 | 1

回答済み
2nd order ODE with variable coefficients
You'll need to rewrite the second-order ODE as a first-order vector ODE. Put y1=y, y2=y1', so y2'=y''. Try ode45, with f = ...

11年以上 前 | 0

| 採用済み

回答済み
Making fmincon display function argument at each iteration
The utility <http://www.mathworks.com/matlabcentral/fileexchange/44120-peek PEEK> on the file exchange can be used to tell you w...

11年以上 前 | 0

回答済み
how plot complementary cumulative density function (CCDF) of data points?
If you have the stats toolbox: ecdf(data,'function','survivor') will plot the CCDF.

11年以上 前 | 1

回答済み
probability of a run of k heads or more in N tosses of a fair coin N>>k
The method in the link you gave can be modified to avoid the need for arbitrary-precision integer arithmetic in calculating the ...

11年以上 前 | 0

回答済み
Genetic Algorithm - Fitness function value differences...
An alternative way to record the evaluated points is with the utility <http://www.mathworks.com/matlabcentral/fileexchange/44120...

11年以上 前 | 0

回答済み
how to output interval spacing from quad, quadl or quadgk?
The utility <http://www.mathworks.com.au/matlabcentral/fileexchange/44120-peek PEEK> on the file exchange is useful for this sor...

11年以上 前 | 0

回答済み
Variance in Ornstein Uhlenbeck process
That's an interesting method, though it's not obvious to me how it works and I couldn't see any reference to it in the planet ma...

12年以上 前 | 0

質問


calculate tangent of 1e100
How do you calculate trig functions with very large arguments? For example, in "Surely you're joking, Mr Feynman", Richard te...

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

1

回答

質問


Is the new Cramer's rule algorithm really as good as LU?
The Wikipedia article on Cramer's rule cites a recent paper that claims to have an O(n^3) algorithm: Ken Habgood and Itamar Are...

13年以上 前 | 0 件の回答 | 0

0

回答

回答済み
Block diagonalize a matrix
It turns out to be easier than I thought. Given V such that A*V=V*E we find any W such that [W,V] is invertible and if A*W = W*...

14年弱 前 | 0

質問


Block diagonalize a matrix
Given a square matrix A and a rectangular matrix V, how do we find a complement U such that [U,V]\A*[U,V] is block diagonal? Fo...

14年弱 前 | 1 件の回答 | 0

1

回答

回答済み
What is missing from MATLAB?
1. Distinguishing variable from function names in M-Lint. To get around the current limitation, "declare" which names are varia...

14年弱 前 | 7