Trying to set up a matrix, getting error message
Mostrar comentarios más antiguos
This is my current code, every time I attempt to run it I get an error message that says "Index in position 1 exceeds array bounds." How do I fix this?
Matrix = fscanf(fid, '%f', [3, 4]);
w = Matrix(1,:);
t = Matrix(2, : );
g = Matrix(3, : );
1 comentario
% fid = 0;
% Matrix = fscanf(fid,'%f', [3, 4])
Matrix = [3, 4] % if this is your input Matrix read
size([3 4])
w = Matrix(1,:);
t = Matrix(2, : ); % here is the error where you try to access non-existent row
g = Matrix(3, : );
you try to access non-existent row for the Matrix vector whose size consists of only 1 row
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 2 de Feb. de 2024
0 votos
You have accidentally created a variable named fscanf
Categorías
Más información sobre Matrices and Arrays en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!