getfvb(A,M,N,mode)
GETFVB Get the first values of blocks of a matrix.
   B = GETFVB(A,M,N) for a matrix A returns a matrix containing first values  
   of blocks with size [M N] of a matrix given A.  
    
   B = GETFVB(A,M,N,'vect') for a matrix A returns an arry containing first values  
   of blocks with size [M N] of a matrix given A.  
   If someone want to improuve or adding some changes, only let me know
   about that
   Examples:   
    A=[ 1 2 3 4
          5 6 7 8 
          9 1 1 2
          2 4 5 6 ]
      B = getfvb(A,2,2)
      % returns
      B=[ 1 3
            9 1 ]
      B = getfvb(A,2,2,'vect')
      % returns
      B=[ 1 9 3 1]
       
 
      A=[ 1 2 3 4
             5 6 7 8 
             9 1 1 2
             2 4 5 6 ]
      B = getfvb(A,1,2)
      % returns
      B=[ 1 3
             5 7 
             9 1
             2 5 ]
 B = getfvb(A,1,2,'vect')
 % returns
  B=[ 1 5 9 2 3 7 1 5]
Cita come
Said BOUREZG (2025). getfvb(A,M,N,mode) (https://it.mathworks.com/matlabcentral/fileexchange/62630-getfvb-a-m-n-mode), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
- Image Processing and Computer Vision > Image Processing Toolbox > Image Filtering and Enhancement > Neighborhood and Block Processing >
 
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
| Versione | Pubblicato | Note della release | |
|---|---|---|---|
| 1.0 | 
             | 
        
