Ahmed Redissi
Followers: 0 Following: 0
Statistics
0 Questions
10 Answers
RANK
12.809
of 295.467
REPUTATION
4
CONTRIBUTIONS
0 Questions
10 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20.234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153.912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Average values only next to each other in a matrix
You can reshape the n by 1 vector so that it is 2 by n/2 and then take the mean which will calculate the average for each column...
meer dan 3 jaar ago | 0
Need some help on moving spheres in 3D axes!!
Hi, I worked on something similar before to create the Solar System in Matlab. First, I calculated the x, y, and z coordinates ...
meer dan 3 jaar ago | 0
for loop isn't working and I dont Know what i am doing wrong
First, initialize the variable you are going to use to store the sum to zero. Then iterate over the values of t and increment th...
meer dan 3 jaar ago | 0
Animate the motion plot
Here's an example that can help you create an animation: % Create the trajectory xtrajectory = linspace(-5,5); ytrajectory = ...
meer dan 3 jaar ago | 0
online signal peak detection
If you have the Signal Processing Toolbox, try using the function "findpeaks". Here's how to use it: https://www.mathworks.com/...
meer dan 3 jaar ago | 0
plotting 2 variables as they change with respect to one another
It's not clear why you are iterating over the values of A when you are not using them in the loop. Generaly, you shouldn't itera...
meer dan 3 jaar ago | 0
How can i make a function that return values from a plot?
If you only have a figure and not the data, you can follow this example to extract data from the figure containing the FFT: cle...
meer dan 3 jaar ago | 0
How to find an array in a vector or matrix?
You can use the function "ismember" to find if an array or a scalar is part of another array. Here is the documentation for it s...
meer dan 3 jaar ago | 0
zpk function is missing
Hi, While there is no "zpk" function in the Signal Processing Toolbox, there is a method called "zpk" of the object "digitalFil...
meer dan 3 jaar ago | 0
How can I structure a loop to calculate a range of residuals to determine optimal filter cut-off frequency?
Hi, You can structure your loop this way to iterate over the cutoff frequencies and calculate the root mean square error: fcut...
meer dan 3 jaar ago | 0
| accepted