Buscar Volver arriba Filtrar resultadosUbicaciónEstadísticas (1)ClasificaciónTipo de artículoCategoríaGuíaTemaN/AN/AAuthorRebecca Laff & Wendy RuizParis, Ricardo, Raymond, & JohnsonJennifer Paris, Kristin Beeve, & Clint SpringerKrischa Esquivel, Emily Elam, Jennifer Paris, & Maricela TafoyaIrma Isabel González CuadrosJoaquín López HerraizMaría M. Reynoso, Carina E. Magnoli, Germán G. Barros y Mirta S. DemoGlencora BorradaileShow TOCyesnoCover PageyesTOC OnlyCompile but don't publishLicensePublic DomainCC BYCC BY-SACC BY-NC-SACC BY-NDCC BY-NC-NDGNU GPLAll Rights ReservedCC BY-NCGNU FDLTranscludedAutonumber Section Headingstitle with space delimiterstitle with colon delimiterstitle with dash delimitersLicense Version1.01.32.02.53.04.0Incluir datos adjuntosTipo de contenidoDocumentoImagenOtro Buscando enTodos los resultadosAcerca de 1 resultados6.2: Problemas en Variables Aleatorias y Probabilidadeshttps://espanol.libretexts.org/Estadisticas/Teoria_de_Probabilidad/Probabilidad_Aplicada_(Pfeiffer)/06%3A_Variables_aleatorias_y_Probabilidades/6.02%3A_Problemas_en_Variables_Aleatorias_y_Probabilidadest = 1:6; c = ones(6,6); [x,y] = meshgrid(t,t) x = 1 2 3 4 5 6 % x-values in each position 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 y = 1 1 1 1 1 1 % y-values in each position 2 2 2 ...t = 1:6; c = ones(6,6); [x,y] = meshgrid(t,t) x = 1 2 3 4 5 6 % x-values in each position 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 y = 1 1 1 1 1 1 % y-values in each position 2 2 2 2 2 2 3 3 3 3 3 3 4 4 4 4 4 4 5 5 5 5 5 5 6 6 6 6 6 6 m = min(x,y); % min in each position M = max(x,y); % max in each position s = x + y; % sum x+y in each position d = abs(x - y); % |x - y| in each position [X,fX] = csort(m,c) % sorts values and counts occurrences X = 1 2 3 4 5 6 fX = 11 9 7 5 3 …MásMostrar más resultados