photo

Ahmed Redissi

Last seen: 4年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

0 質問
10 回答

ランク
10,228
of 300,851

評判
4

コントリビューション
0 質問
10 回答

回答採用率
0.00%

獲得投票数
0

ランク
 of 21,094

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,294

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer

バッジを表示

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...

4年以上 前 | 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 ...

4年以上 前 | 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...

4年以上 前 | 0

回答済み
Animate the motion plot
Here's an example that can help you create an animation: % Create the trajectory xtrajectory = linspace(-5,5); ytrajectory = ...

4年以上 前 | 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/...

4年以上 前 | 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...

4年以上 前 | 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...

4年以上 前 | 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...

4年以上 前 | 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...

4年以上 前 | 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...

4年以上 前 | 0

| 採用済み