Eric Brown
Followers: 0 Following: 0
Statistiques
9 Questions
0 Réponses
RANG
202 053
of 295 569
RÉPUTATION
0
CONTRIBUTIONS
9 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
66.67%
VOTES REÇUS
0
RANG
of 20 247
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 105
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
Find the average of each row, ignore the first column
This is pretty straight foward, probaly something small I'm missing but as the title says, mean of each row starting at element ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Division by repeated subtraction with remainder
The code I'm trying to build needs to compute the division of two non-zero numbers and return the quotient and remainder. When I...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
A for loop that counts the negatives of a 1D array
My function is to recieve a 1D array of numbers as the input and uses a for loop to find the location of all negatives in the ar...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Function not giving an output
The code I have is to find the cost of a parking bill. I want the code to return an error message if the inputs are not within m...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
a function that has two inputs: a number and a row vector
The code i am tryin to make requires that there be only two inputs, the first a number and the second as a row vector. How do I ...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
Normalized Sinc using matrix inputs
My code is to use the formula sinc(x) = sin(x*pi)/(x*pi) to return a matrix of the same size as the input, and when dealing with...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Not enough input arguments from a row vector
My code is to find the roots of a quadratic using a row vector as the input. The function is called using myquad([3 4 5]) and I ...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
A function that replaces any negatives with zeros
function y = NoNegatives(x) if x(x<0) y = (x == 0); else y = x; end I am to create a function that takes a vecto...
plus de 2 ans il y a | 3 réponses | 0
3
réponsesQuestion
Nth term of a Leibniz Series
I'm trying to create a function that will take a signle input (N) and output the Nth term in the Leibniz Series but for some rea...
presque 3 ans il y a | 3 réponses | 0