photo

David Amor


2013년부터 활동

Followers: 0   Following: 0

메시지

통계학

All
  • First Review
  • Thankful Level 1
  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer
  • Promoter
  • Commenter
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Let's get back to school: create mixed numbered fraction
A fractional number can be represented as mixed number. A "mixed number" consists of an integer followed by a proper fraction...

6년 초과 전

답변 있음
Relationship Between Simulink and FPGA Clock
In the "Model Configuration Parameters" (the cog at the top) Set your solver to "Fixed-step" and "Discrete (no continuous states...

대략 7년 전 | 0

| 수락됨

답변 있음
Rapid Accelerator - Monte Carlo simulation
Two steps: (1) Add 'SaveState','on' To the input parameters of "sim" such that the states of the system will be logg...

8년 초과 전 | 1

| 수락됨

질문


Rapid Accelerator - Monte Carlo simulation
I followed the instructions on this <http://blogs.mathworks.com/seth/2015/03/19/getting-the-most-out-of-rapid-accelerator-mode b...

8년 초과 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

대략 9년 전

답변 있음
Help with 'Make Error' in Simulink
Have you tried putting the project in a directory lower down in the C: drive e.g. move C:\Users\Ian\Documents\School\D+C ...

거의 10년 전 | 0

답변 있음
Simulink block to extract signal at index from vector signal doesn't exist?
Are you trying to get a single bit from a vector at an index? If so bitget would be easier and less verbose. ans = bitget(...

대략 10년 전 | 0

질문


generating a repeating (Digital) sequence in simulink
Hello All, I need to generate a digital signal that repeats (signal is based on an RS232 signal), I have tried using the "Rep...

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


simulink mxArray subscripting not supported
Hello all, When I try this: disp(VariableNames(i)) I get an error: Subscripting into an mxArray is not supported. ...

10년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
How do I change the default Matlab editor into Notepad++?
I am getting the same. I think this is a genuine bug... There are other bugs with the editor in 2013b release (the breakpoi...

10년 초과 전 | 0

답변 있음
Embedded matlab block as a parameter - not an input (without "ports and data manager")
sorry, I just found this: coder.extrinsic('evalin') fixed_step_size = evalin('base', 'fixed_step_size'); Dave

10년 초과 전 | 0

| 수락됨

질문


Embedded matlab block as a parameter - not an input (without "ports and data manager")
Hello, When using an embedded Matlab block within Simulink, I would like to make the use of parameters more transparent by in...

10년 초과 전 | 답변 수: 1 | 0

1

답변

질문


HDL Code generation - exclusion of code
Is there a way to exclude "Embedded Matlab blocks" in Simulink from code generation Illegal "Embedded Matlab" code generation...

거의 11년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

대략 11년 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

대략 11년 전

문제를 풀었습니다


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

대략 11년 전

문제를 풀었습니다


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


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.

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


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

대략 11년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

대략 11년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 11년 전

문제를 풀었습니다


Is it a number?
Determine if input is numeric. If it is,output is 1; if it is not, output is 0.

대략 11년 전

더 보기