回答済み Why are fft diagrams mirrored?
Hi Dhyan,
actually, it is not always the case, since it is true only for real signals.
It can be proven mathematically that wh...
9年弱 前 | 4
| 採用済み
解決済み
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...
約9年 前
解決済み
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false.
E...
約9年 前
解決済み
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.
約9年 前
解決済み
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1.
Examp...
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:...
約9年 前
回答済み Circular moving point at a set velocity
Assuming that your velocities are already angular velocities (number of radians per time unit), adding a for loop and a vector t...
約9年 前 | 2
| 採用済み
解決済み
Implement simple rotation cypher
If given a letter from the set:
[abc...xyz]
and a shift, implement a shift cypher.
Example:
'abc'
with a shi...
約9年 前
回答済み How do I reset the signal output?
I think that the answer you are searching is the "modulo" operation. Let's say your ramp is stored in vector y and you want the ...