Réponse apportée
fsk modulator and demodulator
Walter is right - when you add noise(3) to the signal you are not actually adding random noise, you're just adding some positive...

presque 15 ans il y a | 1

| A accepté

Réponse apportée
Inoperability between Mac (Intel) and Windows
'filt' is the name of a function in the Control System Toolbox: >> doc filt Perhaps the Mac does not have Control System...

presque 15 ans il y a | 2

| A accepté

Réponse apportée
Why do I get the errors "Missing operator, comma, or semicolon" and "eval(['dbstop in ' mfile ' at ' num2str(line_num)])"?
If you look at the submission's page on the File Exchange, the author says this: "Note for users who get stuck by the IMVIEW ...

presque 15 ans il y a | 0

Réponse apportée
How to get the coefficients from FDA Tool block (Simulink) using Matlab Command?
If you right-click on the Digital Filter Design block (FDATool block) and 'Look Under Mask', you will see that the block contain...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
Butterworth Notch Filters
For higher order filters (possibly starting as low as order 8), numerical problems due to roundoff errors may occur when forming...

presque 15 ans il y a | 3

| A accepté

Réponse apportée
Plot two graphs in one scope
You could use <http://www.mathworks.com/help/releases/R2011a/toolbox/simulink/ug/bq_5wvg-1.html Model Referencing> to include th...

presque 15 ans il y a | 0

Réponse apportée
Getting undefined model variables
You could place something like this in the InitFcn callback of your model: if ~exist('a', 'var') % If 'a' is not initialize...

presque 15 ans il y a | 0

Réponse apportée
i am having simulink model build in matlab6.1 version but now when i try to open it in matlab 7.6 version it shows 'bad link" and the error is -does not found powerlib2..". how i can open that model file that was build 5 years back in matlab6.1 version
You should open the model in MATLAB R2006b or earlier and use the PSBUPDATE function to convert the powerlib2 blocks to powerlib...

presque 15 ans il y a | 2

Réponse apportée
Guitar SImulation
The Signal Processing Toolbox has a nice demo that shows how to use filters to create guitar chords. To bring up the GUI, type:...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
High pass butterworth filter
You are converting the cutoff frequency to radians while leaving the Nyquist rate in Hz. Try this: fc=0.1;% cut off freq...

presque 15 ans il y a | 0

Réponse apportée
What exactly is the 'Sample time' (Ts) and 'Samples per frame' variables in the Bernoulli bit generator?
If the output of the Bernoulli Binary Generator block is set to sample-based, then 'Ts' is the amount of time between consecutiv...

presque 15 ans il y a | 2

| A accepté

Réponse apportée
time interval between fft1 and fft2
When you say "time difference", do you mean the difference in execution time between the two routines? tic B=ampl_fft(A)...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
Simulink Embedded MATLAB Function
When you call FSOLVE from Embedded MATLAB it is called as an extrinsic function, meaning the return type is an mxArray. To use ...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
How to use 'set_param' command for Sample Time parameter in Bernoulli Binary Generator?
The correct parameter name is 'Ts'. You can view a list of the block's parameters like this: get_param([my_model '/Berno...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
array assignment question
So you just want to flip the horizontal orientation of b before you insert it into the same location in a? a(topRow:topRow+...

presque 15 ans il y a | 1

Réponse apportée
Problem with matrix manipulation
You can use the <http://www.mathworks.com/access/helpdesk/help/techdoc/ref/size.html SIZE> function to check how many rows are i...

presque 15 ans il y a | 0

| A accepté

Réponse apportée
fprintf function
Try opening your text file like this: object = fopen('file.txt', 'w'); This will specify that the file object is to be used ...

presque 15 ans il y a | 0

Réponse apportée
Simulink time samples
Is there a reason that you couldn't use a fixed-step solver (with step size 0.001s) instead of a variable-step solver? That way...

presque 15 ans il y a | 1

Réponse apportée
Halfband and FIR filter for decimation
First of all, REMEZ is an obsolete function for designing an equiripple FIR filter. You should use <http://www.mathworks.com/ac...

presque 15 ans il y a | 0

Réponse apportée
Implementing QPSK modulation and Demodulation
The Bernoulli generator block is only going to generate a square wave with a value of 0 or 1. This explains why you are only se...

environ 15 ans il y a | 0

| A accepté

Réponse apportée
M-FSK Modulator Passband
The M-FSK Modulator Passband block hasn't been around since R14 - check out the <http://www.mathworks.com/access/helpdesk/help/t...

environ 15 ans il y a | 1

| A accepté

Réponse apportée
Is there a way to abort Simulink simulation programatically if it takes a long time?
Walter is correct about using a timer object that is configured to fire at the end of the wait period. In the timer callback yo...

environ 15 ans il y a | 2

| A accepté

Réponse apportée
Help splitting a matrix based on a specified column.
Try this: B=A(A(:,3) == 0, :) C=A(A(:,3) ~= 0, :)

environ 15 ans il y a | 5

Question


How can I identify all the changes to the configuration set between two different versions of Simulink?
I would like to know what changes have been made to the configuration set in Simulink between the version I am on and the most r...

environ 15 ans il y a | 1 réponse | 1

1

réponse

Réponse apportée
Has the algorithm for fdesign changed in Signal Processing Toolbox 6.13 (R2010a) as compared to the previous versions?
This is expected behavior. The filter designed in R2007b does not match the passband specifications very well. In Signal Proce...

environ 15 ans il y a | 0

| A accepté

Question


Has the algorithm for fdesign changed in Signal Processing Toolbox 6.13 (R2010a) as compared to the previous versions?
I am using fdesign.decimator to design an equiripple filter with given specifications. I have recently upgraded from R2007b to R...

environ 15 ans il y a | 1 réponse | 0

1

réponse