Estadística
CLASIFICACIÓN
2.302
of 297.016
REPUTACIÓN
28
CONTRIBUCIONES
2 Preguntas
14 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
4.136 of 20.419
REPUTACIÓN
348
EVALUACIÓN MEDIA
3.70
CONTRIBUCIONES
8 Archivos
DESCARGAS
23
ALL TIME DESCARGAS
3387
CLASIFICACIÓN
4
of 157.725
CONTRIBUCIONES
18 Problemas
5228 Soluciones
PUNTUACIÓN
52.477
NÚMERO DE INSIGNIAS
124
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
Get ranking of a combination
I have the numbers pulled without replacement from the set [1 2 3 4 5 6 7 8 9 10 11 12 13]; They are then ordered from least to ...
alrededor de 1 mes hace
Resuelto
Matrix Rotation
Write a MATLAB function that rotates a given matrix by 90 degrees clockwise. The rotation should be performed in-place, without ...
6 meses hace
Resuelto
Write a MATLAB function that takes a positive integer ( n ) as input and returns the sum of all the even numbers from 1 to ( n ).
Write a MATLAB function that takes a positive integer ( n ) as input and returns the sum of all the even numbers from 1 to ( n )...
8 meses hace
Resuelto
Implement the signum function
The signum function is a common mathematical function, which has the following definition : If x => 0, its value is 1, if x < 0...
8 meses hace
Resuelto
Palindrome Checker
Create a MATLAB function that checks whether a given string is a palindrome or not. A palindrome is a word, phrase, number, or o...
8 meses hace
Resuelto
Sort by absolute value
Given a list of numbers, arrange them in ascending order based on their absolute values. For example, for the list [-30, -5, 1...
8 meses hace
Resuelto
Replace with Lower
Given a list of integers, for each element, replace it with the minimum integer found in the sub-list to its strict right (exclu...
8 meses hace
Resuelto
Průměr z výběrového souboru
Napište funkci, která vrátí průměr z hodnot vektoru data. Např data = [1, 2, 3, 4, 5, 6, 7, 8, 9] je prumer = 5.
8 meses hace
Resuelto
Armstrong Number
Write a function name armstrong_check that checks whether the given input is an Armstrong Number or not. It returns logical True...
alrededor de 1 año hace
Resuelto
Given a matrix X, manipulate it accordingly
Given a matrix X, 1st add a column to the matrix whose elements are the summation of each rows. Then add a row to the matrix who...
alrededor de 1 año hace
Resuelto
Orthogonalize 3 column vectors using the Gram-Schmidt process
Use the Gram-Schmidt process to orthogonalize three linearly independent column vectors. Return three output column vectors that...
alrededor de 1 año hace
Resuelto
Orthogonalize a 2x2 matrix using the Gram-Schmidt process
Use the Gram-Schmidt process to orthogonalize two linearly independent column vectors. Return two output column vectors that are...
alrededor de 1 año hace
Resuelto
Matrix symmetry
Given a matrix A = [1 2 3; 4 5 6] Flip it horizontally and vertically to obtain a complete reversal of both rows and columns. ...
alrededor de 1 año hace
Resuelto
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.
alrededor de 1 año hace
Resuelto
Return part of an array
Given a 5x5 array, return a 3x3 array that contains the cells that are not on the edge of the array: Given this array Return...
alrededor de 1 año hace
Resuelto
Summing the last column column
Given a matrix, return the sum of the last column of the array.
alrededor de 1 año hace
Resuelto
Count integers in randomized vector that are multiples of a given number.
The mod() function We might all remember the days when we were taught to divide and then set the remainder aside if the numbers...
alrededor de 1 año hace
Resuelto
Find the mean of the magic x
Given a x term, find the magic x, then find the mean/average of any one row or column.
alrededor de 1 año hace
Resuelto
nxn matrix with elements from 1:n^2
really simple once you see what the matrix is supposed to look like. i appreciate what seems to be a clever approach to solving ...
alrededor de 1 año hace
Resuelto
Find alternating sum
Given an array, find alternating sum i.e. – y = x (1) – x (2) + x (3) – x (4) + x (5) - …
alrededor de 1 año hace
Resuelto
Check for armstrong number
Given a number, check if it is an armstrong number. Eg: n = 371 Output: 1 Eg: n = 75 Output: 0
alrededor de 1 año hace
Resuelto
Extract the prime numbers
Given a list of elements, extract the prime numbers from that array.
alrededor de 1 año hace
Resuelto
How many offices does MathWorks have in the UK
Please write a function that returns the number of offices MathWorks has in the UK.
alrededor de 1 año hace
Resuelto
Add Even and Subtract Odd Numbers in an Array
For an input array, add all the even values and subtract the odd values. This final value is the output. E.g. input = [1 2 3 4...
alrededor de 1 año hace
Resuelto
Harmonic series counting
The function takes a positive limit as input, And counts how many terms must be summed in the harmonic series: 1/1, 1/2, 1/3, ...
alrededor de 1 año hace
Resuelto
Remove a specific row with max value
Remove the row that contain the max value in the matrix?
alrededor de 1 año hace