답변 있음
simulation
Are you asking why Simulink runs faster than real-time? If so, you may want to look at the following File Exchange entries: *...

대략 13년 전 | 0

| 수락됨

답변 있음
Double Prime
It looks OK to me: <<https://lh4.googleusercontent.com/-okBJXir1qyg/TfIPXNy1BSI/AAAAAAAABYA/jnYEzcI4fkU/s128/G_doubleprime.JP...

대략 13년 전 | 0

답변 있음
Compiling M files for dSpace
As Walter suggested, you can't generate C code from a MATLAB S-Function without writing a TLC file. See <http://www.mathworks.co...

대략 13년 전 | 0

답변 있음
Creating simulink block and hidding the code
Have a look at the question that Paulo suggested. For what you want to do, I suspect an S-function is the best option. You'll ne...

대략 13년 전 | 0

답변 있음
how can I extract internal delay from a discrete system when I convert it to continuous with d2c?
>> H = tf(2,[1 -0.95],0.1,'InputDelay',25) Transfer function: 2 z^(-25) * -------- z - 0.95 ...

대략 13년 전 | 2

| 수락됨

답변 있음
how to convert function from time domain to frequency domain?
Compute |H(w)| for a range of values of |w| and then use the <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/fft.html...

대략 13년 전 | 0

답변 있음
visualization with graphs
This is a standard demo that ships with <http://www.mathworks.com/products/3d-animation/ Simulink 3D Animation> called |vr_octav...

대략 13년 전 | 0

| 수락됨

답변 있음
Requirements for opening a matlabpool
It depends: if you are using a local scheduler on your own multicore machine, then no. If you are using a grid of computers, the...

대략 13년 전 | 1

답변 있음
load syntax
Use the function syntax rather than the command syntax: load(fname_,'-mat') For more details on the function vs. command...

대략 13년 전 | 0

| 수락됨

답변 있음
Servo Motor and MATLAB
You can't. Have a look at the <http://www.mathworks.com/help/releases/R2011a/toolbox/gauges/rn/bqmgtwa-1.html Release Notes>: ...

대략 13년 전 | 0

| 수락됨

답변 있음
simulink matlab function block build error
Have you set up your C compiler and target settings in xPC Target Explorer? Have tried running |xpctest|? You should go through ...

대략 13년 전 | 0

| 수락됨

답변 있음
Simscape blocks in Simulink Models
Yes, it is possible to include Simscape/SimDriveline blocks in Simulink, using the <http://www.mathworks.com/help/releases/R2011...

대략 13년 전 | 1

| 수락됨

답변 있음
Draw bar graph with non-fixed y values
<http://www.mathworks.com/help/releases/R2011a/techdoc/ref/int2str.html |int2str|> converts an integer into a string so your |y|...

대략 13년 전 | 0

답변 있음
error while using "from file" block in SIMULINK
As Andreas suggest, load your MAT file in MATLAB and re-order the data so that the time values are monotonically increasing. Yo...

대략 13년 전 | 1

답변 있음
simulink question
The reason for the first warning is because you don't have any continuous states in your model, only discrete states, so Simulin...

대략 13년 전 | 1

답변 있음
Doubt in circuit of battery
You can't connect Simscape and SimPowerSystems components together, Have a look at <http://www.mathworks.com/matlabcentral/newsr...

대략 13년 전 | 1

답변 있음
while loop in simscape language
|while| and |for| loops are not allowed in the Simscape language, see the <http://www.mathworks.com/help/releases/R2011a/toolbox...

대략 13년 전 | 1

| 수락됨

답변 있음
Can Stateflow use Microsoft Excel data for simulation input?
Import the data into MATLAB using import wizard or <http://www.mathworks.com/help/releases/R2011a/techdoc/ref/xlsread.html |xlsr...

대략 13년 전 | 3

| 수락됨

답변 있음
Import and combine multiple XYZ.txt data files into one X, Y and Z column vectors
I don't think you can import all the files at once, but you can do so in a loop and append the data from each file to what has a...

대략 13년 전 | 1

| 수락됨

답변 있음
Joint Sensor - simmechanics
With regards to your first question, that shouldn't happen. The dynamics of the machine shouldn't change depending on what you c...

대략 13년 전 | 0

| 수락됨

답변 있음
system of differential equations
Write down the equations on paper and then implement them using the various blocks available in Simulink. A tip: it's generally ...

대략 13년 전 | 0

답변 있음
Toolbox vs. library
A toolbox is typically a collection of MATLAB functions and a library a collection of Simulink blocks. Having said that, many MA...

대략 13년 전 | 1

| 수락됨

답변 있음
Real time windows target problem
Windows 7 wasn't supported for R2008a, see <http://www.mathworks.co.uk/support/sysreq/release2008a/index.html System Requiremen...

대략 13년 전 | 0

답변 있음
Estimation of transfer function
For frequency-domain data, there are three types of id models supported by the System Identification Toolbox(see <http://www.mat...

대략 13년 전 | 0

답변 있음
matlabpool RAM occupation
Does the RAM usage come back down when running |matlabpool close|? Remember that |matlabpool open 8| is equiavelent to starting ...

대략 13년 전 | 3

| 수락됨

답변 있음
How to set the Simulink runtime and time steps from the workspace
I would advise you to set the output options (Simulation -> Configuration parameters, Data import/export tab) to "produce specif...

대략 13년 전 | 1

| 수락됨

답변 있음
closedloop with delay and difference between Inputdelay and Outputdelay
You have no choice but to use state-space: >> feedback(ss(Gp),tf([1],[1])) a = x1 x2 x1 -10 -...

대략 13년 전 | 1

| 수락됨

답변 있음
How can I convert handle function to a string
You can do |char(f)| but I don't think this will work with <http://www.mathworks.com/help/releases/R2011a/toolbox/symbolic/solve...

대략 13년 전 | 0

답변 있음
How to iterate through the ports of a block/model
Select a block and then use: get_param(gcb,'PortHandles') Here's an example when selecting a mux block with one input po...

대략 13년 전 | 0

답변 있음
How can i create a color vector for markers in a scatter plot?
It depends what you mean by the "right colour settings". The following will give you a C matrix of the right size, but whether t...

대략 13년 전 | 0

더 보기