Mehdi BENSEDDIK
National Institute of Posts and Telecommunications
Followers: 0 Following: 0
Major Engineer in Electronics and Embedded Systems
統計
All
ランク
N/A
of 296,352
評判
N/A
コントリビューション
0 質問
0 回答
回答採用率
0.00%
獲得投票数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
解決済み
Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
約5年 前
解決済み
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
6年弱 前
解決済み
Given an unsigned integer x, find the largest y by rearranging the bits in x
Given an unsigned integer x, find the largest y by rearranging the bits in x. Example: Input x = 10 Output y is 12 ...
6年弱 前
解決済み
Converting binary to decimals
Convert binary to decimals. Example: 010111 = 23. 110000 = 48.
6年弱 前
解決済み
Convert given decimal number to binary number.
Convert given decimal number to binary number. Example x=10, then answer must be 1010.
6年弱 前
送信済み
MAX274_2nd_4th_6th_8th_Order_Filter
The MAX274 is continuous-time active filter consisting of independent cascadable 2nd-Order sections. It comprises four 2nd-order...
6年弱 前 | ダウンロード 2 件 |
解決済み
Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...
6年弱 前
解決済み
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
6年弱 前
解決済み
Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...
6年弱 前
解決済み
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
6年弱 前
解決済み
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...
6年弱 前
解決済み
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
6年弱 前
送信済み
Probability-of-Detection
Calculate the probabilities of detection with several values of SNR for Matched_Filter Cross_Correlation Energy_Detection and Go...
6年弱 前 | ダウンロード 3 件 |
解決済み
Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F(n) = F(n-1) + F(n-2) * where F(1) = 1 and F(1)...
6年弱 前
解決済み
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
6年弱 前
解決済み
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
6年弱 前
送信済み
BandPass_Filter
I implemented a BandPass Filter of 2nd Order into simulink by using Analog components : Resistors and Capacitors.
6年弱 前 | ダウンロード 1 件 |
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
6年弱 前
解決済み
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
6年弱 前
解決済み
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
6年弱 前
送信済み
Goertzel-Algorithm
The Goertzel algorithm is a technic in digital signal processing (DSP) that provides a means for efficient evaluation of individ...
6年弱 前 | ダウンロード 1 件 |
送信済み
Filter_8th_Order_Matlab
Create a 8th order filter in Matlab and pass a noisy sinus pulse through it and see the result in Frequency Domain.
6年弱 前 | ダウンロード 1 件 |