Skip to content

Commit

Permalink
Made plsc argument optional in firstguess
Browse files Browse the repository at this point in the history
  • Loading branch information
VChristiaens committed Apr 26, 2022
1 parent ef5a947 commit 4fb1d40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vip_hci/fm/negfc_simplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def firstguess_simplex(p, cube, angs, psf, plsc, ncomp, fwhm, annulus_width,
return solu


def firstguess(cube, angs, psfn, ncomp, plsc, planets_xy_coord, fwhm=4,
def firstguess(cube, angs, psfn, ncomp, planets_xy_coord, plsc=0.1, fwhm=4,
annulus_width=4, aperture_radius=1, cube_ref=None,
svd_mode='lapack', scaling=None, fmerit='sum', imlib='vip-fft',
interpolation='lanczos4', collapse='median', algo=pca_annulus,
Expand Down Expand Up @@ -321,10 +321,10 @@ def firstguess(cube, angs, psfn, ncomp, plsc, planets_xy_coord, fwhm=4,
PSF 2d-array.
ncomp: int
The number of principal components.
plsc: float
The platescale, in arcsec per pixel.
planets_xy_coord: array or list
The list of (x,y) positions of the planets.
plsc: float, optional
The platescale, in arcsec per pixel.
fwhm : float, optional
The FHWM in pixels.
annulus_width: int, optional
Expand Down

0 comments on commit 4fb1d40

Please sign in to comment.