已回答
Index exceeds the number of array elements (1000).
Hi Samantha, Yes, as mentioned by you in the comments. When ever there is an index accessing the array or matrix, beyond its ...

4 years 前 | 0

已回答
Why is 4-by-2 matrix compatible with 4-by-1 vector?
Hi Ann, As placed in the documentation link, yes, it is compatible. The .* operation does element wise multiplication. For th...

4 years 前 | 1

已回答
Sum of elements in cell array
Hi Hamzah, The issue you observe in numerical values is due to the precision that is not observed for the values. When the for...

4 years 前 | 0

| 已接受

已回答
How to use a generated MEX function?
Hi Maria, The generated mex file will have an extensions mex for the filename. For example with windows platform, you get the m...

4 years 前 | 0

| 已接受

已回答
Why do I get "array indices must be positive integers or logical values" when running this for loop?
Hi Spencer, The access of i_theta in xcoord and ycoord is the issue. In MATLAB, indexing is one based. Try to update as folllo...

4 years 前 | 0

| 已接受

已回答
What can I do about this problem to create a table?
Hi Jonathan, You can try converting to strings to avoid such problem. Here is the line of code, that is changed with strings. ...

4 years 前 | 0

| 已接受

已回答
Skip iterations in for loop
Hi Maud, You can directly use those values for index i. Try this, for i = [2:4 8:13 17:22 26:31 35:40 44:46] grf43.data(:,i) ...

4 years 前 | 1

已回答
step amplitude change in a sine wave code Matlab
Hi Macyln, I am not exactly sure as what you are looking for. Based on the figure, i see that you wanted to have different leve...

4 years 前 | 0

| 已接受

已回答
How to use one function in another function
Hi Sushanth, When the functions f1 and F2 are in the path where function f3 can acess, then you can directly use the function...

4 years 前 | 0

| 已接受

已回答
convert 1x1 Cell with scientific number as text to a number in MATLAB.
Hi Eddie, To convert cell to a number, you can use cell2mat function. For usage of the function, look https://www.mathworks.c...

4 years 前 | 0

已回答
Doubt about NR PDSCH Throughput example
Hi Angelo Rob, Please refer to the answer placed in https://www.mathworks.com/matlabcentral/answers/549510-input-bits-in-nr-pds...

4 years 前 | 0

已回答
Input bits in NR PDSCH Throughput example
Hi AngeloRob, Inorder to get the bit error rate, the simplest is to store an array of bit errors, similar to simThroughput valu...

4 years 前 | 2

已回答
reverse indexing of a matrix in matlab
Hi Lilly, You get error at that line, because, you just removed the sort operation, which can provide two outputs. The code ca...

4 years 前 | 0

| 已接受

已回答
model to create V2X applications
Hi Prateek, For a quick start, in terms of LTE based sidelink V2X communications, at the L1-L3 link-level, the LTE Toolbox has ...

4 years 前 | 1

| 已接受

已回答
xyz2rgb input arg
Hi Loong, XYZ is the tristimulus values and not the coordinate system, since the color space is varied from XYZ to RGB. You ca...

4 years 前 | 0

| 已接受

已回答
channel coefficient generation for TDL channels
Hi Ashok, To get the path filter impulse response for link-level MIMO fading channel (i.e. nrCDLChannel or nrTDLChannel), use t...

4 years 前 | 0

已回答
Frame structure in NR PDSCH Throughput example
Hi Angelo, The example considers each slot in a frame is allocated for the downlink transmission. For a 15 kHz SCS, in each fra...

4 years 前 | 0

已回答
Reserved PRB in PDSCH object from 5G toolbox not working
Hi Christian, Thanks for sharing the code. The issue of PDSCH not rate-matching around the SSB comes from the incorrect assign...

4 years 前 | 0

| 已接受

已回答
5G NR Synchronization Procedures
Hi Xiangwei, You are almost right, in expressing the words. Minor correction: Though we can extract the SSB with the stronges...

4 years 前 | 1

| 已接受

已回答
QAM modulation in Uplink and Downlink Carrier Waveform Generation
Hi Javier, Based on the plots, i see it is placed for an uplink waveform generation example. The uniform color for QPSK with g...

4 years 前 | 0

| 已接受

已回答
Modify number of antennas in NR PDSCH Throughput
Hi Javier, The one most important aspect is to change is the number of layers. The number of layers decide whether the number o...

4 years 前 | 0

| 已接受

已回答
5G NR Downlink Carrier Waveform Generation
Hi Javier, You can provide any values. But the best guide to run different simulations is the Transmission bandwidth configurat...

4 years 前 | 0

| 已接受

已回答
SRS in Uplink Carrier Waveform Generation
Hi, Its because in the SRS Instances configuration, the Enable field is set to 0. Here is the code that is present in that sect...

4 years 前 | 0

| 已接受

已回答
Plot f(x,y) = sin(2piX)sin(2piY)
Hi William, Try this: x = -2:.1:2 y = -2:.1:2 [X,Y] = meshgrid(x,y) Z = sin(2*pi*X).*sin(2*pi*Y) % Peform element wise mult...

4 years 前 | 1

已回答
Hey, I am having trouble indexing into string vectors
Hi, Update this as below: res = ["ABC" , "DEF" , "GHI"] tf = [1 0 1]; % This is of type double, so convert to logical as ...

4 years 前 | 2

| 已接受

已回答
Error: Matrix dimensions must agree
Hi Marcello, Here is what happens, in your code. Place the annotations to help you understand. ws=[2 4 6]; % w is a 1 x 3 matr...

4 years 前 | 0

已回答
Find row(s) of 3x3 matrix where the 1st and 2nd column equals a value
Hi, Try this: out = M(M(:,1)==1 & M(:,2)==1,:); % For the example provided with value 1 % For any generic value out = M(M(...

4 years 前 | 0

| 已接受

已回答
problem using for loop
Hi James, The variable is updated with the latest value in the for loop, leading to have only single value at the end of the fo...

4 years 前 | 0

已回答
Cannot understand about this
Hi Byeongchan, This observation is becuase the variable i and actual value in z11 and z12 are plotted. Since the effect values ...

4 years 前 | 1

已回答
How do I plot a graph when the parameter changes?
Hi Donghun, This can be done by taking the maximum value of Response_amp and storing the values for each iteration of l. Then p...

4 years 前 | 1

| 已接受

加载更多