Answered
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

14 years ago | 0

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

14 years ago | 1

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

14 years ago | 1

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

14 years ago | 0

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

14 years ago | 4

| accepted

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

14 years ago | 0

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

14 years ago | 1

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

14 years ago | 2

| accepted

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

14 years ago | 0

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

14 years ago | 3

| accepted

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

14 years ago | 2

| accepted

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

14 years ago | 1

| accepted

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

14 years ago | 0

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

14 years ago | 0

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

14 years ago | 0

| accepted

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

14 years ago | 0

| accepted

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

14 years ago | 0

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

14 years ago | 1

| accepted

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

14 years ago | 0

| accepted

Answered
saving and recalling data in MATLAB
doc save doc load

14 years ago | 0

| accepted

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

14 years ago | 2

| accepted

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

14 years ago | 0

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

14 years ago | 1

| accepted

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

14 years ago | 1

| accepted

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

14 years ago | 1 answer | 1

1

answer

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

14 years ago | 0

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

14 years ago | 1

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

14 years ago | 1

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

14 years ago | 1

| accepted

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

14 years ago | 0

| accepted

Load more