Estadística
4 Preguntas
0 Respuestas
0 Problemas
5 Soluciones
CLASIFICACIÓN
117.184
of 301.806
REPUTACIÓN
0
CONTRIBUCIONES
4 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
25.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.413
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
60.449
of 176.647
CONTRIBUCIONES
0 Problemas
5 Soluciones
PUNTUACIÓN
60
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
más de 8 años hace
Resuelto
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...
más de 8 años hace
Resuelto
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...
más de 8 años hace
Resuelto
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 ...
más de 8 años hace
Pregunta
what does it mean by [ ] in the following code
min(N,[],3)
más de 8 años hace | 2 respuestas | 0
2
respuestasPregunta
Write a function called peri_sum that computes the sum of the elements of an input matrix A that are on the “perimeter” of A. In other words, it adds together the elements that are in the first and last rows and columns. IS MY CODE RIGHT?
function [z]=peri_sum(B) z=sum(B(1,1:end))+sum(B(2:1:end,1))+sum(B(2:1:end,end))+sum(B(end,2:1:end-1)); end
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
it doesn't work .so,what is the problem?
function w= flip_it(v) w = v(end:-1:1); end
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
#what is the problem in the code so that it is not accepted??
function [area,cf]=circle(r) cf=2*pi*r; area=pi*r*r; end
más de 8 años hace | 1 respuesta | 0

