Estadística
6 Preguntas
0 Respuestas
CLASIFICACIÓN
169.316
of 301.741
REPUTACIÓN
0
CONTRIBUCIONES
6 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.403
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 176.339
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Get n numbers from a list
I know there is a function nchoosek, however is there any way to do this without using this particular command since we aren't a...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Given a list of numbers, how do you take specific numbers at time?
I want to create a function file that extracts n number/s at a time from a given list of numbers. For example the given list i...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
How to get the sum of the rows of a matrix?
I am very new to Matlab and I just want make a function file that inputs a 3x3 matrix and gets the sum of each rows. I don't kno...
alrededor de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
How to show the roots of a polynomial in complex numbers?
function root(a, b, c) if nargin==1,c=a(3);b=a(2);a=a(1);end x1 = (-b+sqrt(b.^2-4*a*c))/(2*a); x2 = (-b-sqrt(b.^2-4*a*c))/(2*...
alrededor de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
How to make a function file that displays a polynomial and accepts a specific command?
function lou(a,b,c) fprintf('%dx^2 + %dx + %d =0 \n',a,b,c) end this is my code right now. how do i modify my code to make ...
alrededor de 4 años hace | 2 respuestas | 0
2
respuestasPregunta
How to plot the functions x=cos(t) and y=sin(t) in a single graph?
I tried to do plot them but I wasn't confident since one of the functions is with respect to the x axis. t=linspace(0,2*pi); ...
alrededor de 4 años hace | 1 respuesta | 0
