
Gerardo Domínguez Ramírez
Followers: 0 Following: 0
Mechatronics student who loves automation, control, machine learning and AI. Also develops web apps.
Python, C, Javascript, MATLAB, HTML, CSS, Arduino
Spoken Languages:
English, German, Spanish
Professional Interests:
Industrial Automation Applications, Web Apps, AI for Signals and Images, Control Systems
Statistics
0 Problems
917 Solutions
RANK
N/A
of 298,247
REPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,553
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
Determine whether the input is divisible by 3 as well as 5
If the input is divisible by 3 as well as 5 then the output should be 'true' otherwise 'false'
2 years ago
Solved
For a rectangle, if x is the length and 2x is width. Then find out x from the area of the rectangle?
For a rectangle, if x is the length and 2x is the width. Then find out x from the area of the rectangle? if the area is equal...
2 years ago
Solved
Slope of the line passing through two points
Determine the slope of a line passing through the points a=[x1 y1] and b=[x2 y2].
2 years ago
Solved
find "greatest common divisor" of two integer value
A function to find Greatest Common Divisor of two integer input E.G. x=-18 y=96 output should be +6 x=-18; y=96; >>your...
2 years ago
Solved
Transpose the Matrix
Transpose the given matrix, e.g. x=[a b;c d] transpose of x = [a c;b d]
2 years ago
Solved
Count me in
Count the number of occurrences of the second input in the first input Ex. x1 = 12344455511; x2 =2; output = 1 ...
2 years ago
Solved
Calculating Ring Area
In two-dimensional space, a ring can be constructed by using two concentric circles. Determine the area of a ring which has r1 ...
2 years ago
Solved
Calculate solution of given polynomial
For example, y=function([3 -2 -4]) In here, input vector indicate 3*x^2-2*x-4, y is solution of former equation. y=[1.5...
2 years ago
Solved
solve for y that is half as much as three less than one tenth of x
function y = half(x) y = (x * .1); end
2 years ago
Solved
Form a square matrix from four square sub-matrices
Create a square matrix, y, from 4 square sub-matrices that will be constructed (x1, x2, x3, x4): y = [x1 x2; x3 x4]; ...
2 years ago
Solved
Matrix Generation from Vector Multiplication
Output the matrix generated from multiplying two vectors together
2 years ago
Solved
My Problem, Find the square of the horizontal concatenation of the third and fifth elements of a vector.
given the 1x5 vector x, y must be the square of the horizontal concatenation of the third and fifth elements. So, if x = [1 1 1 ...
2 years ago
Solved
Create an m x n array consisting only of an input value.
Create an array with m rows and n columns wherein all entries are assigned the input value x.
2 years ago
Solved
Find difference of two set as per example
Find difference of two set as per example Say x=[1:5] and y=[2:6] then, set_diff(x,y) should give output[1] and set_diff(y...
2 years ago
Solved
Back to Basics - New Data Type in R2016b - convert a char to a string
Convert an char array into a string.
2 years ago
Solved
Median computation (★)
Given a vector of values, compute the median. The median is defined as the middle value in a set of *sorted* data. Thus, if ...
2 years ago
Solved
Perfect Square
Determine if the input is a perfect square (square of an integer) or not. Example - If input is 25(==5^2), return 1. If input...
2 years ago
Solved
Consecutive Powers
Return 2 numbers and 2 powers such that their difference is 1 A 4 element row vector is expected: x where x(1)^x(2) - x(...
2 years ago
Solved
Rotate counterclockwise a matrix 90 deg with left-bottom element
Example: Input [ 1 2 3 4 5 6 ] Output [ 3 6 2 5 1 4 ]
2 years ago
Solved
Sort rows of a matrix
Sort rows of matrix A in an ascending order according to the last column Example input: A = [1 2 3;7 8 9;4 5 6]; Exam...
2 years ago