photo

Ramakrishnan Ambur


RWTH Aachen university

Active since 2012

Followers: 0   Following: 0

Message

Statistics

All
MATLAB Answers

2 Questions
0 Answers

Cody

0 Problems
10 Solutions

RANK
112,728
of 301,432

REPUTATION
0

CONTRIBUTIONS
2 Questions
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
 of 21,280

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
40,000
of 174,555

CONTRIBUTIONS
0 Problems
10 Solutions

SCORE
110

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Solver

View badges

Feeds

View by

Solved


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

13 years ago

Question


Validation of NARX net gives different results in Matlab and simulink
Hi, I have created an ANN (NARX type) with NN Toolbox(version 6.0.2 Matlab R2009a). The validation results using sim command ...

13 years ago | 0 answers | 0

0

answers

Question


Using dividerand or divideblock for sequential inputs to be used in a dynamic NARXSP network
Hi, I am currently using Neural network toolbox in MATLAB R2009a. For my application, I need to create a dynamic NARX network....

13 years ago | 0 answers | 0

0

answers

Solved


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

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago

Solved


inner product of two vectors
inner product of two vectors

14 years ago

Solved


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago

Solved


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

14 years ago