Réponse apportée
Turn Off Simulink Warning for Transport Delay Time Shorter than Fixed Time Step
warning off %Might work but don't forget to turn it on again later

plus de 14 ans il y a | 0

Réponse apportée
Simulink workspace
change the workspace of your simulation or define the parameters of the simulation or blocks with set_param, here's the simple s...

plus de 14 ans il y a | 1

Réponse apportée
The desktop configuration was not saved successfully
<http://www.mathworks.com/support/bugreports/601429 Maybe this will fix it>

plus de 14 ans il y a | 1

Réponse apportée
How to run a Simulink simulation with a push button?
%load or open the model if it isn't already open_system('MySimulation.mdl') %load_system('MySimulation.mdl') set_param('My...

plus de 14 ans il y a | 0

Réponse apportée
How to save 2 variables from function and use it in another function in MATLAB GUI?
%callback of button 1 var1=get(handles.text1,'String') set(handles.text1,'String','') handles.var1 = var1; guidata(hOb...

plus de 14 ans il y a | 4

| A accepté

Réponse apportée
Can I run MATLAB 5.3 on Windows XP?
Following Aurelien Queffurust answer MATLAB might not work under Windows XP but there are other options, you can run one or more...

plus de 14 ans il y a | 0

Réponse apportée
MATLAB's accuracy of digits number
The Symbolic Math Toolbox™ can handle the 25 digits, some of their functions have default digit number of 32 digits.

plus de 14 ans il y a | 1

Réponse apportée
String of matlab script
\n means new line %s means print a string tt can be a string,vector or array When you say tt(5:6) you are selection element...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
Setting Array Value
r=[1 3 1 7] a=[r;r;r] or r=[1 3 1 7] b=ones(4,1)*r b=b(1:3,:) or r=[1 3 1 7] repmat(r,3,1)

plus de 14 ans il y a | 0

Réponse apportée
Displaying series of images in an axes in a GUI
function testimg figure pbh = uicontrol(gcf,'Style','pushbutton','String','Next',... 'Position',[10 20 60 40],... ...

plus de 14 ans il y a | 3

| A accepté

Réponse apportée
How can I plot a bode diagram with random color?
Another strange question from sadel, I never seen someone doing so many strange things but it's all good, here's a variation fro...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
Export data from simulink to workspace when using sim command
[t,x,y]=sim(... Returns the simulation's output matrix. Each column contains the output of a root-level Outport block, in por...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
how to pause simulink at a defined time with a matlab commend?
<http://www.kxcad.net/cae_MATLAB/toolbox/simulink/ug/f11-31373.html Creating Pause Blocks (see at the end of the page)> or in yo...

plus de 14 ans il y a | 0

Réponse apportée
Scaling of time
load the file and do something like this Ts=0.001; %signal sampling t=0:Ts:19; %time vector (in your case i...

plus de 14 ans il y a | 0

Réponse apportée
similar matrix multiplication speed up
Try <http://www.mathworks.com/matlabcentral/fileexchange/25977-mtimesx-fast-matrix-multiply-with-multi-dimensional-support MTIME...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
how to control motor dc with PID
<http://www.engin.umich.edu/class/ctms Control Tutorials for MATLAB and Simulink>

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
not getting the correct graph
Have you tried Walter suggestion <http://www.mathworks.com/matlabcentral/answers/9653-to-plot-a-value-in-percentage-form bar(G ....

plus de 14 ans il y a | 0

Réponse apportée
How can I fix this error?
Just FYI the following code won't provide the same graph has the step function, it just plots the function having s as the varia...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
PID output...
Use the <http://www.mathworks.com/help/toolbox/simulink/slref/saturation.html saturation block>

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
saving and recalling data in MATLAB
doc save doc load

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
How to extract the frequency and amplitude from a FFT and save the values in separated tables?
You can use the function findpeaks of the Signal Processing Toolbox™ to find the two peaks and their frequency, if you have that...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
printing output
I have no idea how the function works, here's just a few basic tips: X1 = TruncatedGaussian(sigma1, range1, n) %first test ...

plus de 14 ans il y a | 0

Réponse apportée
Image invisible
Hide: set(gca,'visible','off') %hide the current axes set(get(gca,'children'),'visible','off') %hide the current axes co...

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Simulink: rectangular pulse filter with finite rise time?
I found how to generate square waves with slew rate, do this: Signal Generator -> Rate Limiter

plus de 14 ans il y a | 1

| A accepté

Question


What's missing from Simulink?
I'm curious, is there something you wish to do with Simulink but you can't or it's something basic that you do by combining othe...

plus de 14 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
Simulink: rectangular pulse filter with finite rise time?
Use the Signal builder from simulink _ _ _ _ _| |_| |_ -> _/ \_/ \_

plus de 14 ans il y a | 0

Réponse apportée
xlsread unable to find .xls file
I wonder if the file extension is xlsx, check that out and also try this: xk = xlsread('Profiles')

plus de 14 ans il y a | 1

Réponse apportée
Which line is on top in a matlab graph?
It's the order of the plots, last thing to be added to the axes stays on top, see this example: clf hold on x=0:0.1:10; ...

plus de 14 ans il y a | 1

Réponse apportée
Going from [ a b c ] to (a, b, c)
func(var(1),var(2),var(3))

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
Loading and using a .MAT file
Try like this: save('D:\Temp_folder\MyVars') load('D:\Temp_folder\MyVars') Also you can use the save function with appe...

plus de 14 ans il y a | 0

| A accepté

Charger plus