Estadística
5 Preguntas
0 Respuestas
CLASIFICACIÓN
235.354
of 300.392
REPUTACIÓN
0
CONTRIBUCIONES
5 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
60.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.934
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 168.373
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
I'm writing an RREF function of my own and need to perform row swaps to obtain upper triangular form. I have the following augmented matrix: [1,-1,2,0,7;0,0,1,2,1;0,0,-1,-2,-3;0,0.2,0,0.6,0.6]. Will you please look at my flawed script? Thanks!
%Index columns, then rows, to check if there are any nonzero entries below the matrix(j,j) value for j=2:n-1 for i=j:m...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
I am trying to write my own rref and have the following code. It appears to have worked for the first column but not for all other columns for a test augmented matrix I entered. Can you please assist? Thanks!
%Loop through columns, then rows %j=1:n-1 because matrix is augmented and I only want to check the square matrix values; howe...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I convert a 3D RGB image to a grayscale image using the intensity formula (intensity=0.2989*red + 0.5870*green + 0.1140*blue)?
Here is part of the script, and I believe my use of the cat function is incorrect but I'm not sure how else to convert the RGB i...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
How do I use a user input for a desired number of decimal places in an fprintf or similar statement? The instructions are to use the user's input to display or print the correct number of decimal places once calculations are performed. Thanks!
I have tried using something like this to no avail: fprintf('# Negative:\t\t\t\t\t%0.%f',decimal,neg) Perhaps I need an sp...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
I would like to store each iteration of a for loop into a row vector, in order. This particular problem does not start with a vector, but instead with separate scalar user inputs that must be placed into a vector. How do I achieve this? Thanks!
Random variables seem to be placed into a row vector instead. I've been trying for hours and can't figure this out. num=inp...
más de 8 años hace | 1 respuesta | 0
