photo

genevois pierre


Last seen: 6ヶ月 前 2012 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

13 質問
3 回答

Cody

0 問題
3 解答

ランク
24,060
of 300,791

評判
1

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

回答採用率
92.31%

獲得投票数
1

ランク
 of 21,091

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
75,376
of 171,108

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

スコア
40

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • First Review
  • Thankful Level 3
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

質問


computing a sequence of vectors
the sequence is defined, for i = 1:n, by this vectorial recurrence relation : [A(i+1); B(i+1)] = Q * [A(i); B(i)] + [C; D] wit...

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

1

回答

質問


how to stop executing a function if its duration is too long ?
Hi, the solve function (applied to a hard problem) still executes after a 30 minutes run ... Can it be stopped by the calling pr...

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

1

回答

回答済み
using symbolic calculus on char strings (coming from a file)
Thank you for your answer ; a warning when using str2sym could mean that this function will be removed in a future version ? How...

約7年 前 | 0

| 採用済み

質問


using symbolic calculus on char strings (coming from a file)
Hello, I'm currently using str2sym on char strings obtained from fgetl on a text file containing many lines of mathematical expr...

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

1

回答

質問


behavior of for loop with strings of chars ?
Hi, this for statement for string = ['=A=', '=B=', '=C='] [starts, ends] = regexp(line, string); the ...

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

1

回答

質問


how to replace 'x\d+' by 'X(...same number as \d+ ...)' such as x45 --> X(45) using regexprep ?
Hello, I'm searching for replacing, in a text file, strings having 'x' as only non numeric character at the beginning, followed...

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

1

回答

質問


accessing to some ga's parameters
Hi, I cannot access to some values of parameters of ga as (names = values hereafter) : options_ga.FitnessScalingFcn = @fitsc...

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

0

回答

質問


how to count the number of function calls without modifying it by inserting a counter ?
Hi, for example in ga(...), the count of objective function calls is provided, but not that of the constraint function. My unsat...

約7年 前 | 2 件の回答 | 0

2

回答

質問


a test to exclude inf and nans from pinv(...) doesn't work
Hello, having this error : Error using svd Input to SVD must not contain NaN or Inf. Error in pinv (li...

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

1

回答

回答済み
constrained pso : how to set initial population ?
I get the same problem ... probably due to the call to fmincon in psocheckinitialpopulation, line 99.

9年弱 前 | 0

質問


constrained pso : how to set initial population ?
hi, i tried options = optimoptions('particleswarm', 'InitialPopulation', tous_xi); where tous_xi contains initial position...

約9年 前 | 3 件の回答 | 0

3

回答

質問


options_pso.InitialPopulation : how to assign ?
hi, i now get an error when setting options.InitialPopulation = [1,2,3] for example, after having run options=pso . Can you help...

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

1

回答

質問


constrained pso : Not enough input arguments.
hi, in my code, I use [x, fval, exitflag] = pso(mapse_vu_sd, 7, [], [], [], [], ... lx, ux, mapse_CNL_sd_c) and I g...

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

1

回答

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

約9年 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

約9年 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約9年 前

回答済み
What exactly does TolCon do and how is relative max(constraint violation) calculated?
hi, the link in "Tolerances are described here" is not set : could you arrange this ? Thank you.

約13年 前 | 0

質問


index of control loop that is a vector component
hi all, in order to make my code more compact, i tried this : for x(1) = lb(1) : d_x(1) : ub(1) for x(2) = lb(2) :...

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

1

回答

質問


How can I extract column vectors from matrix (with large number of columns) ?
Having a lot of columns, this way of extracting from a big matrix named C : temperature = C(:,1); index = C(:,2); ... ...

13年以上 前 | 2 件の回答 | 1

2

回答