Réponse apportée
HDL OFDM Transmitter Reference Application
Hi Nisha, Please ensure you have the products HDL Coder, Wireless HDL Toolbox and Simulink installed in MATLAB. Also, ensure yo...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
While loop if condition
Hi Braden, You can add these conditions in the while loop. (~isreal(left)) % To check if left is a complex number (imag(left)...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Delete the first element from each first row inside the cell array
Hi Daria, You can try A1 = cellfun(@(x) x(2:end), A, 'UniformOutput', false) For more information about cellfun, look here. ...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
1x0 emtpy double row vector?
Hi Metin, In MATLAB, the colon operator indicates the range of values that are used for an operation. lowestNum:HighestNum is ...

plus de 5 ans il y a | 0

Réponse apportée
How to convert array so that I have only numerical values
Hi Pavan, As from the snippet provided, i can see a pattern where from 6 element the numeric value starts and has till last but...

plus de 5 ans il y a | 0

Réponse apportée
BER in scatter plot
Hi Darshan, BER is not releated to complex symbols. So, it can'e be known from scatter plot. You need to first demodulate the ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to design a filter to pass frequencies between 0 and 12Hz
Hi Hishan, You can confirm if your filter designed meets the requirements, by looking at the frequency response of the filter u...

plus de 5 ans il y a | 0

A résolu


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

plus de 5 ans il y a

Réponse apportée
5G DMRS sequence generation
Hi Bryan, The function nrPRBS accepts a vector or a scalar to specify the number of elements in the sequence, n. When n is spe...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
which filter generate after prepossessing signals into Signal Analyzer app, IIR or FIR ?
HI Dhiraj, The singal analyzer app, preprocess the signal using these functions for the corresponding filters: lowpass, (Low p...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
MODELING POWER AMPLIFIER IN MATLAB AND DPD BLOCK DESIGN
Hi Madhurima, For quick start, you can look after the video here and the corresponding example here. Hope this helps. Regards...

plus de 5 ans il y a | 0

Réponse apportée
physical layer implementation of ieee 802.11ah
Hi, IEEE 802.11 ah physical layer simulation framework is available with WLAN Toolbox. For Tx, Rx and channel modeling relat...

plus de 5 ans il y a | 0

Réponse apportée
sort applied after CCE-TO-REG mapping post interleaving
Hi Yatin, The "sort" is used to effect the frequency-first filling *per OFDM symbol* for the resource blocks within a control c...

plus de 5 ans il y a | 0

Réponse apportée
How can I run 5G NR Downlink Signal Generator
Hi Chanuk, The application shown in the video is a demo file and is made up using the 5G Toolbox. To generate the NR-TM or FRC...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How do I subplot multiple tiles that I divided from a satellite image in one figure?
Hi Oanh, You can try the following, since you are there are 16 x 16 tiles. tiles=zeros(500,500); tiles = mat2cell(TOARef_B{5}...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
how can i plot positive magnitude only of a sine wave
Hi Ali, From next time, please post the code you tried and where you have struck. So, that if one wants to try out the things, ...

plus de 5 ans il y a | 1

Réponse apportée
Error Using Plot for a Derived Fourier Transform Signal
Hi Mohammed, The code that is provided as some variable issues. I tried to correct and placed the code here, based on what u r ...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
USING MEX TO SPEED UP THE CODE
Hi Yogendra, Once you generated the mex (MATLAB executable) using MATLAB Coder. Then, observe that there will be a file generat...

plus de 5 ans il y a | 1

Réponse apportée
Filter transfer function for impulse response
Hi ACICY, I think you just wanted to confirm if the transfer function placed is apt or not. You made a good try, but seems tha...

plus de 5 ans il y a | 0

Réponse apportée
RF Toolbox and Simulink library browser
Hi Krishnan, RF Toolbox wont be visible in Simulink Library Browser, it is mainly the MATLAB environment. I think you wanted t...

plus de 5 ans il y a | 1

Réponse apportée
What does ''all'' mean in M = min(A, []. ''all'') ?
Hi xxtan1, The 'all' flag indicates all the elements of the matrix. If the matrix A, as you mentioned is 4 x 4, then min(A,[]...

plus de 5 ans il y a | 2

| A accepté

Réponse apportée
Saving plots in signal analyzer app
HI Hamidreza, Inorder to save the output displays, you can copy and paste them on another application like Word, Paint. Then, s...

plus de 5 ans il y a | 0

Réponse apportée
Find the general solution of the equation y′−y= y2ex.
Hi Satyanarayana, Differential equations can be solved with dsolve function. Here is the code, that you might be looking for: ...

plus de 5 ans il y a | 0

Réponse apportée
How accessible is Simulink for visually impaired users?
Hi Stuart, Here is the accessibility statement of 2020 Q1 https://www.mathworks.com/support/accessibility.html As a first step...

plus de 5 ans il y a | 0

Réponse apportée
Creating a Vector with 5 elements in a specific way
Hi Yuval, n = 5; u = 2.^(0:n-1); Hope this helps. Regards, Sriram

plus de 5 ans il y a | 0

Réponse apportée
Simple circuit using Simulink
Hi Luca, You can draw this in Simulink, if you hace access to Simscape Electical. There are quite a good number of examples an...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Sum of two numbers is not accepted
Hi Stanislav, It is the way the floating point airthmetic are performed in MATLAB. If you would have tried 0.14 + 0.001 equals...

plus de 5 ans il y a | 1

Réponse apportée
How to reshape matrix 2 columns by 2 columns
Hi Ren, Use individual columns and append them. For the sample code you provided, it can be done as below: a = [1 0 2 0 2 3; ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
plot does not display anything using hold on
Hi Dekel, The way you are accessing pix_value_mat indicates it could be a scalar. If there a single value plotted over the valu...

plus de 5 ans il y a | 0

Réponse apportée
Is there a bug in the if function
HI Tianyuan, The issue is not with the if condition, but the way the MATLAB deals with the floating point numbers. "Almost all ...

plus de 5 ans il y a | 0

Charger plus