Create single columns of elementwise means
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How would I compute the elementwise means of dark fields and flat fields, to get both a single dark field and a single flat field column to use in correction. I then need to apply the single dark mean and flat field mean for correcting the transmission data (X_proj).  
X_dark = 2560x30 double
X_flat = 2560x200 double
X_proj = 2560x1500 double 
My attempt for X_dark is below, does this look correct? How would I then apply it to correct the transmission data (X_proj)?
temp=zeros(2560,1);
for i=1:30
    temp=temp+X_dark(:,i);
end
X_dark_avg=temp./30;
3 Commenti
  Jan
      
      
 il 14 Mag 2021
				@Ryan Philips: It depends on what "applying" means here. Please explain, which mathematical operation you want to perform.
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Logical in Help Center e File Exchange
			
	Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!