已回答
How to change a single value on a different vector cell each time? (simulink)
Picking apart vectors can be a little tough in Simulink with only blocks. Fortunately, Simulink is built on MATLAB and that giv...

13 years 前 | 0

| 已接受

已回答
Engine Speed controller Simulink
The entire subsystem represents a calculation of the mass flow rate. You can find the equation on the <http://www.mathworks.com...

13 years 前 | 1

已回答
how could i solve this ode system in simulink?
See the blog post about <http://blogs.mathworks.com/seth/2008/05/23/how-to-draw-odes-in-simulink/ building odes in simulink>. ...

13 years 前 | 0

已回答
Simulink model comparison with R2012b
Try doing the process on <http://www.mathworks.com/help/simulink/ug/try-simulink-project-tools-with-the-airframe-project.html th...

13 years 前 | 0

| 已接受

已回答
SIM command clears workspace
This SIM command should not clear your workspace, you should not have to workaround that. Check your <http://www.mathworks....

13 years 前 | 0

已回答
Easy Simulink Questions (new user)
1. You cannot convert between Block Diagram and MATLAB-Code (.m file) 2) PSI (being cvariable) would be connected to a gain b...

13 years 前 | 1

| 已接受

已回答
Checking values with Simulink
You could use something like this <http://www.mathworks.com/matlabcentral/fileexchange/5761-reset-clock reset timer> on the File...

13 years 前 | 0

| 已接受

已回答
Insert Simulation from Simulink to GUI
At about 35 seconds into the video you see this tool pop up in the GUI. This shows that he is using a virtual reality animation...

13 years 前 | 0

已回答
How can I read a .mdb file from MATLAB?
You can try using the GUI first to make sure your commands are working as intended then use the Generate MATLAB file option in t...

13 years 前 | 0

已回答
Run scripts in parallel on multiple workers (distributed job)
It sounds like there are multiple simulations in each script. So the number of simulations would be the sum of the three and yo...

13 years 前 | 0

已回答
Integration of Matlab Fuzzy .FIS into Java
Depending on how you want to deploy this there are a few options. If you are ok with installing the <http://www.mathworks.com/p...

13 years 前 | 0

已回答
creating a simple simulation
You can try using a <http://www.mathworks.com/help/physmod/powersys/ref/controlledvoltagesource.html controlled voltage source> ...

13 years 前 | 0

已回答
Simulink conditional pass-through
You can perform <http://blogs.mathworks.com/seth/2012/04/09/conditional-execution/ conditional execution> with the merge block s...

13 years 前 | 1

| 已接受

已回答
Retrieving data from structures
Assuming your structure is like: periodicTable.Helium periodicTable.Carbon etc... names = fieldnames(myTable); inG...

13 years 前 | 0

已回答
how can I change series of data into time series data
You can use the <http://www.mathworks.com/help/matlab/ref/datestr.html datestr> function to convert between a numerical represen...

13 years 前 | 0

| 已接受

已回答
How can I implement coder.ceval in Simulink?
From the error and based on the line you use to generate the code, it looks like it can't find the libraries you utilized, math....

13 years 前 | 0

已回答
averaging over a timeseries
You could try utilizing the <http://www.mathworks.com/help/matlab/ref/tstool.html tstool> in MATLAB and see if that can ease thi...

13 years 前 | 0

已回答
Optimization based on inputs and outputs (for online optimization)
I think any response is highly dependent on the system, so keep in mind it is difficult, even when described, to determine how I...

13 years 前 | 1

| 已接受

已回答
Is there any other way to realize Simulink Block of "Tapped Delay" function?
You can try changing some of the optimizations in the configuration parameters to see if that changes the generated code at all....

13 years 前 | 1

已回答
Joint saturation in simmechanics second generation
You can use an <http://www.mathworks.com/help/physmod/sm/ref/angleconstraint.html angle constraint> to limit the motion of a rev...

13 years 前 | 1

已回答
Xpc target data logging at different rate
Eventually I would suspect the system will run out of memory for one reason or another. However, you can use a file scope to lo...

13 years 前 | 0

已回答
Using parallel computing WITHIN a Simulink simulation
You cannot use parallel computing for this operation. Can I ask why you are doing this? Although there may be a perfectly vali...

13 years 前 | 1

已回答
Solving for multiple variables
You have 1 equation and 4 unknowns. Assuming you have at least 4 sets of X/Y values you can split this into 4 equations with 4 ...

13 years 前 | 0

已回答
Simulink model very slow when integrates
It sounds like the model is behaving as expected with a variable step ODE solver. Essentially it will take bigger (faster) step...

13 years 前 | 0

已解决


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

13 years 前

已回答
How can I autotune some parameters based on a Simulink model?
Simulink already has a <http://www.mathworks.com/products/simcontrol/examples.html?file=/products/demos/shipping/slcontrol/scdsp...

13 years 前 | 0

已回答
How can I modify the manipulated variable properties in a MPC block in Simulink?
I don't know if I would normally use a MPC control for a bang-bang (on/off) control scheme, but then again I'm not really that f...

13 years 前 | 0

已回答
MBD: Blocks or C-code ?
It would be tough to say exactly what is best given the unknowns in this case. However, in general, using blocks should be the ...

13 years 前 | 0

已回答
Generating Biased Random Number
I'm no statistician, so I bet there's a better way but you can try this without stats toolbox: Setup an index for each number...

13 years 前 | 0

已回答
VideoReader: audio from avi
Have you tried: [y,Fs] = audioread('myFile.avi'); If this doesn't work you should get the output from info = mm...

13 years 前 | 0

加载更多