統計
All
Feeds
送信済み
Parallel Computing with Simulink: Model Reference Build
These files accompany my blog post of the same name.
約8年 前 | ダウンロード 2 件 |
送信済み
3-D DataViz Contest Animation
Scatter plot of results, CPU Time and node count in 3-D, turned into an animated GIF.
約8年 前 | ダウンロード 1 件 |
送信済み
Hierarchical Symbol Resolution
Example model that shows hierarchical symbol resolution in action.
約8年 前 | ダウンロード 1 件 |
送信済み
Bus Copies Explained
These files accompany the Seth On Simulink® blog post of the same name.
約8年 前 | ダウンロード 1 件 |
送信済み
Simulink Diagnostics Examples
Example models that show the use of diagnostics to improve the model.
約8年 前 | ダウンロード 2 件 |
送信済み
Accurate Modeling in Simulink
These files accompany the November 2006 article in MATLAB Digest
約8年 前 | ダウンロード 2 件 |
解決済み
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:...
13年弱 前
解決済み
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...
13年弱 前
解決済み
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
13年弱 前
解決済み
How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...
13年弱 前
回答済み
Character Variables in Simulink
While characters are not a type you can use on a signal line, you can cast them to an Int8 and then work with that. No blocks i...
Character Variables in Simulink
While characters are not a type you can use on a signal line, you can cast them to an Int8 and then work with that. No blocks i...
13年弱 前 | 2
回答済み
FFT not matching with Continuous FT
Computing the correct scaling of the FFT is difficult as you must also account for the length of the signal data. This is exp...
FFT not matching with Continuous FT
Computing the correct scaling of the FFT is difficult as you must also account for the length of the signal data. This is exp...
13年以上 前 | 0
回答済み
Time dependent switch
Use the output of the Clock as the control signal for the switch. Then the threshold can be set to the time you would like it t...
Time dependent switch
Use the output of the Clock as the control signal for the switch. Then the threshold can be set to the time you would like it t...
13年以上 前 | 3
回答済み
Matlab Compiler And Simulink
The SIM and SIMSET command can not be called from the MATLAB Compiler (This is documented <http://www.mathworks.com/help/compile...
Matlab Compiler And Simulink
The SIM and SIMSET command can not be called from the MATLAB Compiler (This is documented <http://www.mathworks.com/help/compile...
13年以上 前 | 2
質問
What configuration management system do you use for Model-Based Design?
Model-Based Design produces multiple files that require managing them through version control, and configuration management. Wi...
13年以上 前 | 3 件の回答 | 1
3
回答回答済み
Recommendations for Automation Tools... Missing
This section of the MAAB guidelines "recommends" to *tool builders* that they provide a table reporting the level of compliance ...
Recommendations for Automation Tools... Missing
This section of the MAAB guidelines "recommends" to *tool builders* that they provide a table reporting the level of compliance ...
13年以上 前 | 0
| 採用済み
回答済み
simulink library browser blocks gone
This could be the result of a corruption of the library browser repositories. These can be regenerated by deleting or renaming ...
simulink library browser blocks gone
This could be the result of a corruption of the library browser repositories. These can be regenerated by deleting or renaming ...
13年以上 前 | 0
回答済み
Simulink library browser shows "No blocks"
This could be the result of a corruption of the library browser repositories. These can be regenerated by deleting or renaming ...
Simulink library browser shows "No blocks"
This could be the result of a corruption of the library browser repositories. These can be regenerated by deleting or renaming ...
13年以上 前 | 0
回答済み
Simulink Model
Models will evaluate blocks multiple times in the same time step when there are algebraic loops. Turn the algebraic loop diagno...
Simulink Model
Models will evaluate blocks multiple times in the same time step when there are algebraic loops. Turn the algebraic loop diagno...
13年以上 前 | 1
回答済み
sum function
The <http://www.mathworks.com/help/toolbox/simulink/slref/add.html Sum block> can operate on a vector signal, summing all the el...
sum function
The <http://www.mathworks.com/help/toolbox/simulink/slref/add.html Sum block> can operate on a vector signal, summing all the el...
13年以上 前 | 0
回答済み
Simulink modeling problem
# Rewrite the equations as a system of first order derivatives. (Your equations are already in this form) # Add integrators to...
Simulink modeling problem
# Rewrite the equations as a system of first order derivatives. (Your equations are already in this form) # Add integrators to...
13年以上 前 | 0
| 採用済み
回答済み
demux
If your multiplex operation is using the SUM block, you will have a hard time separating the impulses. It may be possible to de...
demux
If your multiplex operation is using the SUM block, you will have a hard time separating the impulses. It may be possible to de...
13年以上 前 | 0
回答済み
Wireless webcam integration for Real-Time Windows Target
You can use the <http://www.mathworks.com/help/toolbox/imaq/fromvideodevice.html From Video Device block> from the Image Acquisi...
Wireless webcam integration for Real-Time Windows Target
You can use the <http://www.mathworks.com/help/toolbox/imaq/fromvideodevice.html From Video Device block> from the Image Acquisi...
13年以上 前 | 0
回答済み
how to calcuate derivate using simulink
The derivative block computes a time based derivative, using a difference ratio (not an analytic derivative). There is no blo...
how to calcuate derivate using simulink
The derivative block computes a time based derivative, using a difference ratio (not an analytic derivative). There is no blo...
13年以上 前 | 1
回答済み
how do I use simulation time as realtime changing variable?
Use a Clock or Discrete Clock block to create a signal (t) then operate with that as your input to the algorithm. The algorithm...
how do I use simulation time as realtime changing variable?
Use a Clock or Discrete Clock block to create a signal (t) then operate with that as your input to the algorithm. The algorithm...
13年以上 前 | 2
| 採用済み
回答済み
Simulink PID Controller Tuning
Try setting the Max Step Size to a small number (.1 or .01). It is possible that the model steps are too large to capture the f...
Simulink PID Controller Tuning
Try setting the Max Step Size to a small number (.1 or .01). It is possible that the model steps are too large to capture the f...
13年以上 前 | 0
回答済み
to compare the floating value of a signal with file.mat signal
You can build the equation using blocks from the Math Operations and Logic and Bit Operations libraries. You will need an <ht...
to compare the floating value of a signal with file.mat signal
You can build the equation using blocks from the Math Operations and Logic and Bit Operations libraries. You will need an <ht...
13年以上 前 | 0
回答済み
differential equations
Fixed step size is a solver setting under Configuration Parameters on the Solver page. If you are running a continuous model wi...
differential equations
Fixed step size is a solver setting under Configuration Parameters on the Solver page. If you are running a continuous model wi...
13年以上 前 | 0
| 採用済み
回答済み
How to plot graphs automatically in a simulink model??
There are lots of ways! * Signal Viewers * Scope blocks * etc.
How to plot graphs automatically in a simulink model??
There are lots of ways! * Signal Viewers * Scope blocks * etc.
13年以上 前 | 0
回答済み
To workspace Block and To Workspace Signal don't exist in workspace
Variables assigned to the workspace do not appear until the model is paused or stopped. If you are trying to process the data f...
To workspace Block and To Workspace Signal don't exist in workspace
Variables assigned to the workspace do not appear until the model is paused or stopped. If you are trying to process the data f...
13年以上 前 | 0