Estadística
15 Preguntas
0 Respuestas
CLASIFICACIÓN
188.124
of 295.527
REPUTACIÓN
0
CONTRIBUCIONES
15 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.242
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.057
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
comparing values of two matrix
Hi lets say I have 2 matrices A=[1 2 1 2 3 3], B=[1 2 2 1 3 3], i want to compare values of matrix and write in different matrix...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
How to find position of value in matrix and write as another matrix
Lets say i have this matrix A = [1 0; 0 0; 1 1; 0 1; 0 0] Now i want to write the positi...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
creating matrix by iteration 2
Hi Everyone how are You? Can U help with this PLEASE: n=4 for i=1:n s=i if s == 3 for k =1:2 A(i,1) =s A(s+1,1)=s end else A(i,1...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
creating matrix with iteration
lets say I have this code: for i=1:4 sum=1+i end i want program to create a ix2 matrix (1st column values are 3) at each it...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
kronecker product by number of iteration
lets say A=[1 2;3 4], i want for i=1:5 times, to multiply A itself kronecker product. in this case ,manual will be kron(kron(k...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Kronocker product of iteration sequence
I have this code: A=[1 0 0;1 1 0;0 1 0] I=[1 0;0 1] F2=[2 1;1 2] for i=1:3 B=0; for j=1:3 B=B...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Sequencing, matrix values and calling function
Lets say I have A=[1 0 0;1 1 0;0 1 0], I=[1 0;0 1], F=[1 2;2 1] matrix, and like this code: for i=1:3 B=0; ...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Compare values and change them
Lets say i have matrix A=[1 2 3;4 2 7;9 6 1] I want the values less than 5 to be replaced with zero, and bigger than 5 to be re...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
Sequence of adding numbers
Hi i have like this question. Lets say i have this code : for i=1:4 C=2+i; end this gives me this answer: C=3, C=4,C=...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
Sum of the elements of rows of matrix
lets say i have A=[1 2 1;3 2 1;3 5 4] and i want to sum up row elements separately and show me results as "Ri=..." here "i" is n...
más de 10 años hace | 3 respuestas | 0
3
respuestasPregunta
String value and sequently representation
Lets say i have string M=['XASSANORXOOUOU'] and I want something like this for i=1:7 Li=[M(i,i+1)] so that i...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
String value and relate with number.
lets say i have A=21,B=12,C=8,D=7 and Matrix with string value W=['DABCD'], and now lets say when i write: Z=W(1:3) which will ...
más de 10 años hace | 2 respuestas | 0
2
respuestasPregunta
element values of matrix.
Lets say i have matrix A=[1 2 2;1 2 2;2 1 2;2 2 2]. if i do this code: [m,n]=size(A) for j = 1 for i = 1:m ...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
How to find string value?
Lets say i have a matrix in form of string A=['AN1OR1OU1'], And I want to find values separately as AN1, OR1, OU2, i tried this ...
más de 10 años hace | 1 respuesta | 0
1
respuestaPregunta
how to find a value of matrix in a specific position?
Lets say I have a matrix A=[1 2 3;2 4 5;6 5 4] and I want to find value at i=2 j=3 which is 5. But I want that program finds tha...
más de 10 años hace | 1 respuesta | 0