Respondida
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

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 1

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

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 4

| aceptada

Respondida
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...

casi 15 años hace | 0

Respondida
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.

casi 15 años hace | 1

Respondida
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...

casi 15 años hace | 2

| aceptada

Respondida
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)

casi 15 años hace | 0

Respondida
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],... ...

casi 15 años hace | 3

| aceptada

Respondida
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...

casi 15 años hace | 2

| aceptada

Respondida
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...

casi 15 años hace | 1

| aceptada

Respondida
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...

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 0

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

casi 15 años hace | 0

| aceptada

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

casi 15 años hace | 0

| aceptada

Respondida
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 ....

casi 15 años hace | 0

Respondida
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...

casi 15 años hace | 1

| aceptada

Respondida
PID output...
Use the <http://www.mathworks.com/help/toolbox/simulink/slref/saturation.html saturation block>

casi 15 años hace | 0

| aceptada

Respondida
saving and recalling data in MATLAB
doc save doc load

casi 15 años hace | 0

| aceptada

Respondida
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...

casi 15 años hace | 2

| aceptada

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

casi 15 años hace | 0

Respondida
Image invisible
Hide: set(gca,'visible','off') %hide the current axes set(get(gca,'children'),'visible','off') %hide the current axes co...

casi 15 años hace | 1

| aceptada

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

casi 15 años hace | 1

| aceptada

Pregunta


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...

casi 15 años hace | 1 respuesta | 1

1

respuesta

Respondida
Simulink: rectangular pulse filter with finite rise time?
Use the Signal builder from simulink _ _ _ _ _| |_| |_ -> _/ \_/ \_

casi 15 años hace | 0

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

casi 15 años hace | 1

Respondida
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; ...

casi 15 años hace | 1

Respondida
Going from [ a b c ] to (a, b, c)
func(var(1),var(2),var(3))

casi 15 años hace | 1

| aceptada

Respondida
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...

casi 15 años hace | 0

| aceptada

Cargar más