hello. i have a output matrix of 253 x 253. i want a small matrix of 90 x 90. how do i do that. please help.

2 commentaires

dbmn
dbmn le 11 Avr 2017
More info about the choice of the 90 elements is needed. Please specify (f.ex. interpolation, first / last 90 elements etc)
Shweta Naiskar
Shweta Naiskar le 11 Avr 2017
any 90 elements will do

Connectez-vous pour commenter.

Réponses (1)

Adam
Adam le 11 Avr 2017
Modifié(e) : Adam le 11 Avr 2017

0 votes

If you don't care which 90 by 90 elements then
outputMatrix(1:90,1:90)
will do this. As will
outputMatrix(101:190,151:240)
and a whole host of other possibilities.

3 commentaires

Shweta Naiskar
Shweta Naiskar le 11 Avr 2017
it is giving me an error for outputMatrix. it says it as an undefined function or variable.
Stephen23
Stephen23 le 11 Avr 2017
@Shweta Naiskar: outputMatrix is the name of your matrix. Use whatever variable name your matrix has.
Guillaume
Guillaume le 11 Avr 2017
Modifié(e) : Guillaume le 11 Avr 2017
So, if Adam had written code to erase everything on your hard drive, you'd have tried to execute it without trying to understand what it does? Scary thought...
Maybe try to understand what Adam has written. This is very very basic matlab. You should have immediately realised that outputMatrix is to be replaced by whatever name you use for your own matrix.
If you do not understand what Adam answer does, then before progressing any further, you should go through the Getting Started with Matlab tutorial. Chapter 3 on array indexing is of particular interest to you. Again, this is extremely basic matlab that every beginner should understand.
Note: I very much doubt that the answer provided is what you want to do, but since you've provided so little information on what you want, it's equally valid as any other possible answer.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by