Statistics
RANK
733
of 295.448
REPUTATION
100
CONTRIBUTIONS
0 Questions
50 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
14
RANK
of 20.227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How to extract date time from format unique to InputFormat?
Hi @Muha, To convert your data into "datetime" format in MATLAB, you can use "regexprep" to handle the PM adjustment. Here’s ho...
9 dagen ago | 0
| accepted
When the histcounts function is used, data that was not in the original data appears
Hi @Wensor, After reproducing your issue and investigating further, I found that the value at the 71st position in your data, 0...
10 dagen ago | 1
erro: Incorrect number or types of inputs or outputs for function location
Hi @Vinicio, I see that you are working on setting up a cellular network site and transmitter configuration for a multi-sector ...
10 dagen ago | 0
QPSK BER theoretical and simulation doesn't match
Hi @Haider, I found a few issues in the code that caused a mismatch between the theoretical and simulated Bit Error Rate values...
11 dagen ago | 1
| accepted
Format scientific decimal place bar plot
Hi @Adi Purwandana, To display data tips in scientific notation with one decimal place on your bar plot, you can format the lab...
11 dagen ago | 0
Identify location of the 2D grid data
Hi @Pete sherer, To identify the logical index of points in the X,Y grid that correspond to the original points in rectList, yo...
12 dagen ago | 0
Impedance, admittance and ABCD matrices
Hi @Afluo Raoual, To compute V1 and V2 using given Z-parameters, we can employ matrix multiplication in MATLAB. Here is a con...
13 dagen ago | 0
I try to let the laptop identify an increase in any vakue of a heatmap grid and if the value increase then that grid will be converted to green but I couldnt let that work.
Hi @Haoyan, I have reviewed your code and have a few observations: In the code segment below, consider a scenario where the ol...
14 dagen ago | 0
How to avoid error accumulating when doing vector transformation?
Hi @serige, The difference in error between the two norm calculations arises from the nature of the operations being performed....
15 dagen ago | 0
| accepted
Is there a way to write protect an m file.
Hi @Govind, Here are some methods to protect your files from being edited: 1. Protecting Code with P-code Files: MATLAB allow...
16 dagen ago | 0
How to solve the poles of (z^2 + 4*z + 3) / ((z^5 + 4*z^4 + 3*z^3 + 2*z^2 + 5*z + 2) *exp(-5*z))?
Hi @Abalone, The warning appears because MATLAB's "poles" function finds it hard to get exact poles when the expression involve...
16 dagen ago | 0
| accepted
trying to create a function for simple Newton polynomial interpolation
Hi @Ole, To create a function that performs Newton polynomial interpolation based on the recurrence relation given these steps ...
17 dagen ago | 0
| accepted
How to rotate pcolor plot with an angle?
Hi @Riyadh, To rotate a "pcolor" plot by a specified angle, you can use a rotation matrix. Assuming you want to rotate the plo...
18 dagen ago | 0
How to break the for loop?
Hi @Neda, I understand that you want to execute a piece of code 500 times using a "for" loop, while skipping any iteration wher...
18 dagen ago | 0
| accepted
coupled differntial equation using ode45
Hi @Kushagra Saurabh, I understand that you are encountering an error while trying to solve the coupled differential equation. ...
ongeveer 2 maanden ago | 0
16-QAM over AWGN Channel
Hi @A. MAR. I understand that you are trying to simulate 16-QAM over an AWGN channel and are having trouble aligning the theore...
ongeveer 2 maanden ago | 0
Control Engineering conver transfer function MIMO to state space
Hi @meng fowler, To convert a 2x2 MIMO transfer function system with two inputs, two outputs, and three states into a state-spa...
ongeveer 2 maanden ago | 0
error is using bvpset in bvp4c
Hi @Syed, I understand that you are aiming to obtain an output with 6 or more decimal places but are encountering errors. Her...
ongeveer 2 maanden ago | 0
| accepted
Error creating array with evenly spaced elements
Hi @Luan Vuong, I understand that you are encountering an issue with id = find(F == 62.3) not working as expected. This is due ...
ongeveer 2 maanden ago | 2
fplot with two y-axis
Hi @Angel Cuadras, I understand that you want to plot two curves using yyaxis with fplot. Based on the code you provided, her...
2 maanden ago | 1
Model simulation Code for SEIR
Hi @Sunday, I understand you are encountering errors related to incorrectly placed functions. The error occurs because the fu...
2 maanden ago | 0
WHY IS MY BER CURVE NOT RIGHT? (QPSK)
Hi @adriane duarte, I see you are having trouble getting the simulation and theoretical curves to match. After checking the c...
2 maanden ago | 0
%I encountered the following problem in the calculation: 1. The calculated H is negative, %and I am unsure if the calculation is correct. Some formulas cannot be simplified and still %exist in the form of 5000/51166. 3. Poor overall code fluency clea
Hi Nicholas, I understand that you are trying to solve for Burial Depth(H) using the Symbolic Math Toolbox in MATLAB but not ge...
2 maanden ago | 0
Calculate Bit Error Rate and Block Error Rate using MATLAB
Hi Sukshith, I see you are interested in calculating the Bit Error Rate (BER) and Block Error Rate (BLER) using MATLAB for your...
2 maanden ago | 0
You have to transmit Data Sequence 11100010 with transmission bit rate 1000000 through QPSK. Write a Matlab code and a) Generate data sequence and all the above mentioned wave
Hi Ali, I understand that you want to separate the even and odd components of the data sequence [1, 1, 1, 0, 0, 0, 1, 0] and pl...
2 maanden ago | 0
Y double axis required trendlines
Hi Somnath, To add trendlines to a double-axis plot in MATLAB, the trendline function from the MathWorks File Exchange as given...
2 maanden ago | 0
Matlab code does not run past a certain point: i.e. buffers at a certain line of code
Hi @Jhryssa, I understand that your code is getting stuck while solving the function using the ode45 solver. To address the i...
2 maanden ago | 0
| accepted
How can I read an image of size 2048*2048 pixels using Matlab 2013 by the "imread()" command ?
Hi @Ali Al-Janabi, To read an image of size 2048x2048 pixels using MATLAB R2013a, imread() function can be used. Here is how yo...
2 maanden ago | 0
Change grid cell size and interpolate values from old grid into new grid.
Hi Luke, I understand that you want to interpolate your bathymetric grid from a 356x583 matrix to a grid with square cells of 3...
2 maanden ago | 0
In BER SIMULATION of BPSK IN RAYLEIGH FADING ENVIRONMENT when I place h=sqrt(1/2)*(randn+j*randn) before while loop I don't get any curve and total BER result why is that ?
Hi Mashrur, I understand that you are encountering an issue of not getting the complete Bit Error Rate (BER) results for all Si...
2 maanden ago | 1
| accepted