已回答
How to calculate the spectrum of the message w(t), the spectrum of the carrier c(t), and the spectrum of the received signal v(t), and the spectrum of the envelope?
To calculate the spectrum of the carrier signal, use the ‘fft’ function as shown below. The same approach can be followed to cal...

5 years 前 | 0

已回答
Phase and amplitude shift
Use two 1D lookup tables where the inputs of 1st and 2nd lookup tables is average power and the output of one lookup table is am...

5 years 前 | 0

已回答
Are there any examples using ecmmvnrfish?
ecmmvnrfish is used to find the fisher information matrix. The inputs to the function are Data, Design and Covariance. The examp...

5 years 前 | 0

已回答
fix the soulation pleaase
In the provided code, the size of p is 1x2. However, the size of p(:,size(p,2))+0.2*[fx;fy] is 2x1. While concatenating horizont...

5 years 前 | 0

已回答
Setting symbol rate and sampling frequency for a carrier in Simulink
The symbol rate of each of the given signals depends on the Sample time parameter in Random Integer Generator block. However, to...

5 years 前 | 0

| 已接受

已回答
Can someone confirm my differentiation code is correct?
The code written to differentiate P (a, u, EA1, EA2) with respect to u is correct. It will give correct result. The reason for t...

5 years 前 | 1

| 已接受

已回答
OCR function does not recognize number 8
While passing the image data to ocr function, no need to convert the image from RGB to gray as ocr function converts truecolor o...

5 years 前 | 0

已回答
How can I resize a plot image and save it?
Assuming the resolution of image to be 32*32 pixels, the image is saved in the specified resolution and format using print funct...

5 years 前 | 0

已回答
Write a function called mysum that sums the first n positive numbers. Give the result x1 for n=20,and the result x2 for n=100. For example, if n = 2, mysum computes the sum of 1 and 2. The result is 3.
Create a function using the keyword ‘function’ and save the file with name mysum.m. function output = mysum(n) output = 0; fo...

5 years 前 | 0

已回答
Convert an image with 16 bit depth to 32 or 62 bit in MATLAB?
To convert a 16-bit monocromatic image (no colors, black and white) to 32-bit, the below procedure can be followed with gray sca...

5 years 前 | 1

| 已接受

已回答
Using ppval for a polynomial of two variables
A piecewise polynomial that is a function of two variables cannot be evaluated using ppval. Use the given link for reference htt...

5 years 前 | 0

已回答
How to hide the mouse pointer in app designer
As of now, using a custom pointer is not supported in AppDesigner -> uifigure for the available MATLAB releases. However, the c...

5 years 前 | 0

已回答
what is the noise bandwidth considered while calcuating SNR ; for func of the form .. r = snr(x,fs,n)
The noise bandwidth is equal to the sampling frequency. This can be obtained by plotting the power spectral density of noise. ...

5 years 前 | 0

| 已接受

已回答
FIR Filter function sample rate
To design an FIR bandpass filter with a passband of 1000Hz to 2000Hz and fs=50000Hz, the passband frequency is given as normaliz...

5 years 前 | 0

| 已接受

已回答
Circular vs. linear convolution of 2D data
Hi William, In order to zero-pad a 2D data i.e. matrix, padding should be in such a way that the row length is equal to r1+r2-1...

5 years 前 | 1

| 已接受

已回答
Stop playing audio using audioDeviceWriter.
Play and stop functions are applicable for audioplayer and audiorecorder objects. An audio played by audioDeviceWriter can be st...

5 years 前 | 2

已回答
Quantizer modelling in Simulink
I am assuming that you are modeling 3rd order delta sigma ADC using uniform quantization. You can use the ‘Idealized ADC Quantiz...

5 years 前 | 0

| 已接受

已回答
How do I display my waterfall plot with only curves?
I assumed some random data to generate waterfall plot. Please refer to the below code for generating waterfall plot in curves. ...

5 years 前 | 0

已回答
How to convert/run Mathematica scripts in MATLAB
I found a similar case in which Mathematica needs to be linked with MATLAB. I would suggest you follow the link provided below. ...

5 years 前 | 0

已回答
convert idtf data format to tf data format
I am assuming that you generated a transfer function using idtf command as shown below. num = [1 4]; den = [1 20 5]; sys =...

5 years 前 | 0