![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15432918_1557139096791_DEF.jpg)
Manvi Goel
Followers: 0 Following: 0
Estadística
0 Preguntas
10 Respuestas
0 Problemas
35 Soluciones
CLASIFICACIÓN
2.226
of 297.016
REPUTACIÓN
28
CONTRIBUCIONES
0 Preguntas
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
7
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
14.087
of 157.725
CONTRIBUCIONES
0 Problemas
35 Soluciones
PUNTUACIÓN
360
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
Please help. Error of index out of bounds
The following errors were there in your code: inappropriate spaces in for loops spaces between clear and the variable associat...
más de 5 años hace | 0
| aceptada
Multiplying 2 Matrices A and B from Scratch (not built in function
Here you go function result = mult(a, b) [r1, c1] = size(a); [r2, c2] = size(b); if( c1 == r2) result...
más de 5 años hace | 2
Display Complete output in Command Window
You can display the output of the matrix by using the disp command. % Let a be the matrix of dim 3200 * 3200 disp(a) % display...
más de 5 años hace | 0
"not equal to" in MATLAB
You can use the ~ instead of ! for not in MATLAB
más de 5 años hace | 3
How to eliminate certain columns from a matrix
Let the matrix be a. You can remove the odd columns of a matrix by : a(:,1:2:end) = [] % 1:2:end runs a loop from 1 till th...
más de 5 años hace | 1
how can we perform 6x6 matrix without values to find the inverse and determination
You can calculate the inverse and determinant of a any n*n matrix using these inbuilt functions: det(x) inv(x)
más de 5 años hace | 0
How can I generate a code for this equation?
You can use the following code for this a = [429.494, 93.112, -6.050]; N = 1024; temp = 0; lambda = zeros(1, N) for i = 1:N...
más de 5 años hace | 0
| aceptada
Ascii to char conversion and vice versa
You can get the ascii values of a character by double('a') and character value to ascii by char(97)
más de 5 años hace | 0
How can I swap two columns of a matrix in MATLAB?
There is an easy way to extract a column of a matrix in MATLAB Suppose you have a matrix A: A = [1, 2, 3 ; 4, 5, 6] and you...
más de 5 años hace | 1
Randomly initialise a matrix with numbers between 0 and 1?
You can initialise a random matrix with uniform distribution between 0 and 1 by the following: randomMatrix = rand(2,5)
más de 5 años hace | 0