Community Profile

photo

Luke Pretzie


2016 年からアクティブ

Followers: 0   Following: 0

統計

All
  • First Answer
  • Revival Level 1
  • Thankful Level 1
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How Long Does Matlab trial version last
I myself am not entirely sure, but I believe the trial period is approximately one month, or 30 days to be exact.

6年以上 前 | 0

質問


Raster Plot & Spike Train
Hello all, I am currently working on a project that would give me a Raster Plot and histogram. However, this seems to be very...

7年以上 前 | 0 件の回答 | 0

0

回答

質問


n point symmetric weighted moving average filter
The following is a hard coded 3-point weighted symmetric moving average filter: ECG(:,1) = time; %initialization of...

7年以上 前 | 1 件の回答 | 0

1

回答

質問


5 point asymmetric moving average using past values
Hello everyone, and thank you in advance for taking the time to inspect my question. I am currently working on a code that wi...

7年以上 前 | 1 件の回答 | 0

1

回答

解決済み


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

7年以上 前

解決済み


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

7年以上 前

解決済み


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

7年以上 前

解決済み


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.

7年以上 前

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

7年以上 前

解決済み


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]

7年以上 前

解決済み


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

7年以上 前

解決済み


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

7年以上 前

解決済み


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

7年以上 前

解決済み


Log of a number
Write a script that will give the log of x as output.

7年以上 前

解決済み


ASCII Code
Using matlab, give the symbol that is associated with ASCii code 90.

7年以上 前

解決済み


Vector with a repeated entry
Create a row vector of length n, filled with 4's. For example, if n = 3, output = [4 4 4] Hint: Search for the function...

7年以上 前

解決済み


If you have matrix A, create matrix B using matrix A as an "element"
A = [1 2 3 4; 5 6 7 8] B = [1 2 3 4 1 2 3 4; 5 6 ...

7年以上 前

解決済み


Unit conversion
Convert x degree Celsius to y degree Fahrenheit.

7年以上 前

解決済み


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

7年以上 前

解決済み


Write a code that will follow the equation y = x * (x + x) * x.
If x = 5, y = 5 * (5+5) * 5 = 250

7年以上 前

解決済み


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

7年以上 前