Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How I can extract certain range of value from workspace?

1 Ansicht (letzte 30 Tage)
Wen Shu Wong
Wen Shu Wong am 4 Nov. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have load 100x100 mat file into workspace. How can I extract certain range of values for example (5:10)x(5:10) from the workspace?

Antworten (1)

S. Walter
S. Walter am 4 Nov. 2020
You have a matrix A:
A = rand(100,100);
You want only the 5th through the 10th elements, you can do that using the colon operator:
B = A(5:10,5:10);
  1 Kommentar
Wen Shu Wong
Wen Shu Wong am 4 Nov. 2020
Hello. I've tried to extract it as A(264:271 , 267:274) but the output is not what I expected. May I know what is the problem with this?

Diese Frage ist geschlossen.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by