![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14243637_1543339478860_DEF.jpg)
yonatan friedman
Followers: 0 Following: 0
Estadística
0 Problemas
41 Soluciones
CLASIFICACIÓN
239.300
of 297.016
REPUTACIÓN
0
CONTRIBUCIONES
10 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
20.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
12.415
of 157.725
CONTRIBUCIONES
0 Problemas
41 Soluciones
PUNTUACIÓN
420
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
Pregunta
bug in the function
What do I need to write in f2 (u1, u2) so that I do not have the error : Undefined function or variable 'ETA'.
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
i want to put n and counter in one matrix
for n=4:50 a=[]; e = ones(n,1); A1 = spdiags([-e 0*e -e 4*e -e 0*e -e],-3:3,n,n); full(A1); A=full(A1); b=zeros(n,1); b(...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Bisection method, Numerical analysis
y=@(x) ((x+1)^2)*(exp(x^2-2)-1); a=0; b=1; m=(a+b)/2; while abs(y(m))<0.01 disp(m) if y(a)*y(m)<0 b=m; elseif y(...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
fprintf and \n (pyramid of numbers)
clc; clear; n = 6; j = []; for i = 1 : n for j = i:n fprintf('%d',i:j) fprintf('\n') end end ~~...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
counting rows after fprintf
function printPythagoras(n) n = 15; for i = 3:n for j = 4:n for k = 5:n if i^2 + j^2 == k^2 && i<j...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
strings become numbers and get in to the matrix
i have a matrice [1 0 -1 -1 2 -1 1 1 0 -1 -1 2 -1 1 1 -1 0 ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
exchange problems to 0.xyz (after the dot)
making change problem I need to exchange my money to "little-money" in this form : [0.5 , 0.25 , 0.1 , 0.05 , 0.01] I have : ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
alternative options to prod
input = [8 10 9 9 1 8 3 2 4 4 10 4 6 2 7 7 1 6 4 ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaGiven a logical vector v, and a positive integer n, return the smallest index i that satisfies
i tried this: for i = length(v) while i + n -1 < length(v) if all( v(i : i+n-1) ) == true disp(su...
alrededor de 5 años hace | 0
Pregunta
Given a logical vector v, and a positive integer n, return the smallest index i that satisfies
Given a logical vector v, and a positive integer n, return the smallest index i that satisfies all( v(i : i+n-1) ) == true F...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
problem in matlab, I need help
insert a matrix with integers numbers : randi([-1,3],5,4) 3 2 -1 0 -1 1 0 2 0 3 -...
alrededor de 6 años hace | 1 respuesta | 0