Matthieu
Followers: 0 Following: 0
Feeds
已回答
How to set matrix as variable with SetBlockParameter ?
I finally found the error myself : A = [1 2 3 4 5] ; string(A) num2str(A) whatItNeeds = strcat('[',num2str(A),']') The l...
How to set matrix as variable with SetBlockParameter ?
I finally found the error myself : A = [1 2 3 4 5] ; string(A) num2str(A) whatItNeeds = strcat('[',num2str(A),']') The l...
1 year 前 | 0
| 已接受
提问
How to set matrix as variable with SetBlockParameter ?
Hello, I am a beginner with Simulink, and I was trying to set the OutValues of a Repeating Sequence interpolated Block to a sig...
1 year 前 | 1 个回答 | 0
1
个回答已回答
Merging piecewise polynomial (pp) structures
Are you trying to 'concatenate' your polynomial structures ? I am not an expert, although I know those are defined by 1 vector ...
Merging piecewise polynomial (pp) structures
Are you trying to 'concatenate' your polynomial structures ? I am not an expert, although I know those are defined by 1 vector ...
1 year 前 | 0
已回答
How to connect Turbine powertrain blockset to data coming from workspace?
Hello, I don't own the Powertrain Blockset. But I did need to export data vectors from my base workspace to simulink. For that,...
How to connect Turbine powertrain blockset to data coming from workspace?
Hello, I don't own the Powertrain Blockset. But I did need to export data vectors from my base workspace to simulink. For that,...
1 year 前 | 0
已回答
Output argument error while using musyn
Hello, Your attached file does not contain uncertainties in your model when transitioning from H-inf control to Mu-synthesis. ...
Output argument error while using musyn
Hello, Your attached file does not contain uncertainties in your model when transitioning from H-inf control to Mu-synthesis. ...
1 year 前 | 0
已回答
Check which range an upper & lower limit lies within
Hi, I would recommand using a cell object instead of table, or a matrix depending on your needs, as shown below : Y1 = 3.4; Y...
Check which range an upper & lower limit lies within
Hi, I would recommand using a cell object instead of table, or a matrix depending on your needs, as shown below : Y1 = 3.4; Y...
1 year 前 | 0
| 已接受
提问
Absurd result using 'integral2' with non-"centered" functions
Hi, I have been trying to compute an expression for a probability which involves four normal density functions ; those are by d...
1 year 前 | 3 个回答 | 0
3
个回答已回答
How do I designate some variables in the same time that are starting with specific characters?
Hi, n = cell(1,3) ; % Replacing your n1, n2, n3 notation with n{1}, n{2}, n{3} for i = 1:3 n{i} = {1,2,3} ; % Define ...
How do I designate some variables in the same time that are starting with specific characters?
Hi, n = cell(1,3) ; % Replacing your n1, n2, n3 notation with n{1}, n{2}, n{3} for i = 1:3 n{i} = {1,2,3} ; % Define ...
1 year 前 | 1
| 已接受
已回答
Biological Effective Dose (BED)
if you have the symbolic formula for TAC : %Define AUC, S, mu, alpha, beta, T beforehand syms TAC(t) % Defi...
Biological Effective Dose (BED)
if you have the symbolic formula for TAC : %Define AUC, S, mu, alpha, beta, T beforehand syms TAC(t) % Defi...
2 years 前 | 0
已回答
How to measure the distance traveled by a vehicle in Matlab
You can use an onboard IMU (measures acceleration) and integrate to get the travel distance and trajectory. The drawback being i...
How to measure the distance traveled by a vehicle in Matlab
You can use an onboard IMU (measures acceleration) and integrate to get the travel distance and trajectory. The drawback being i...
2 years 前 | 0
已回答
Tracing Line from an Image
n= 30 ; m= 40 ; A = rand(n,m) ; B = A ; B(B ~= max(B)) = 0 ; index = find(B) ; [q,r] = quorem(sym(index),sym(n)) ; r(r ==...
Tracing Line from an Image
n= 30 ; m= 40 ; A = rand(n,m) ; B = A ; B(B ~= max(B)) = 0 ; index = find(B) ; [q,r] = quorem(sym(index),sym(n)) ; r(r ==...
2 years 前 | 1
提问
piecewise function with N conditions
I'm trying to achieve the construction of a second maximum logic function f using symbolic expressions/functions : I want f(X) t...
2 years 前 | 1 个回答 | 0