{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Working with Nburst " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "from sitelle.process import SpectralCubePatch as SpectralCube\n", "from sitelle.plot import *\n", "from sitelle.nburst import *\n", "from sitelle.utils import *\n", "from scipy.interpolate import UnivariateSpline\n", "import gvar\n", "from sitelle.parallel import parallel_apply_along_axis\n", "from sitelle.constants import FITS_DIR" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\u001b[0mINFO| Data shape : (2048, 2064, 556)\u001b[0m\n", "\u001b[33mWARNING| /home/blaunet/orcs/orcs/core.py:1595: UserWarning: Malformed spectral cube. The number of steps in the header (900) does not correspond to the real size of the data cube (556)\n", " warnings.warn('Malformed spectral cube. The number of steps in the header ({}) does not correspond to the real size of the data cube ({})'.format(step_nb, self.dimz))\n", "\u001b[0m\n", "\u001b[0mINFO| Cube is in WAVENUMBER (cm-1)\u001b[0m\n", "\u001b[0mINFO| Cube is CALIBRATED in wavenumber\u001b[0m\n", "\u001b[33mWARNING| /home/blaunet/orb/orb/core.py:416: UserWarning: Parameter already defined\n", " warnings.warn('Parameter already defined')\n", "\u001b[0m\n", "\u001b[0mINFO| Cube is in WAVENUMBER (cm-1)\u001b[0m\n", "\u001b[0mINFO| Cube is CALIBRATED in wavenumber\u001b[0m\n" ] } ], "source": [ "SN2_ORCS = SpectralCube(FITS_DIR/'orig/M31_SN2.merged.cm1.1.0.hdf5')\n", "SN2_ORCS.correct_wavelength(FITS_DIR/'M31_SN2.1.0.ORCS/M31_SN2.1.0.skymap.fits')\n", "SN2_ORCS.set_wcs('/obs/blaunet/fits/M31_SN2.1.0.ORCS/M31_SN2.1.0.wcs.deep_frame.fits')\n", "SN2_axis = SN2_ORCS.params.base_axis" ] }, { "cell_type": "code", "execution_count": 110, "metadata": {}, "outputs": [], "source": [ "bkg_cube = io.read_fits('/poubelle/blaunet/SN2/calib_bkg_cube.fits')" ] }, { "cell_type": "code", "execution_count": 118, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 132, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 143, "metadata": {}, "outputs": [], "source": [ "# from orb.utils.image import nanbin_image\n", "# SN2_binned = nanbin_image(bkg_cube, 20)\n", "# SN2_fwhm = nanbin_image(SN2_ORCS.get_fwhm_map(), 20)\n", "\n", "XY = np.mgrid[14:2047:30, 14:2063:30]\n", "X = XY[0]\n", "Y = XY[1]\n", "SN2_binned = bkg_cube[X,Y]\n", "SN2_binned[np.isnan(SN2_binned)] = 0.\n", "SN2_fwhm = SN2_ORCS.get_fwhm_map()[X,Y]" ] }, { "cell_type": "code", "execution_count": 144, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\u001b[0mINFO| Init of the parallel processing server with 16 threads\u001b[0m\n" ] } ], "source": [ "imin, imax = np.searchsorted(SN2_axis, SN2_ORCS.params.filter_range)\n", "from astropy.stats import sigma_clipped_stats\n", "res = parallel_apply_along_axis(sigma_clipped_stats, 2, SN2_binned[...,imax+45:])\n", "SN2_error = res[...,2]" ] }, { "cell_type": "code", "execution_count": 159, "metadata": {}, "outputs": [], "source": [ "max_map = np.nanmax(SN2_binned, axis=2)" ] }, { "cell_type": "code", "execution_count": 164, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\u001b[33mWARNING| /home/blaunet/sitelle_env/lib/python2.7/site-packages/ipykernel_launcher.py:1: RuntimeWarning: divide by zero encountered in divide\n", " \"\"\"Entry point for launching an IPython kernel.\n", "\u001b[0m\n", "\u001b[33mWARNING| /home/blaunet/sitelle_env/lib/python2.7/site-packages/ipykernel_launcher.py:1: RuntimeWarning: invalid value encountered in divide\n", " \"\"\"Entry point for launching an IPython kernel.\n", "\u001b[0m\n" ] }, { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "" ] }, "execution_count": 145, "metadata": {}, "output_type": "execute_result" } ], "source": [ "f,ax = plt.subplots()\n", "plot_spectra(SN2_axis, SN2_binned[10,10], ax=ax)\n", "ax.axhline(SN2_error[10,10])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Creation of the Fitter" ] }, { "cell_type": "code", "execution_count": 147, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\u001b[0mINFO| Data written as /data/blaunet/fits/nburst_data/SN2/cube/30x30_data.fits in 0.06 s \u001b[0m\n", "\u001b[0mINFO| Data written as /data/blaunet/fits/nburst_data/SN2/cube/30x30_fwhm.fits in 0.06 s \u001b[0m\n", "\u001b[0mINFO| Data written as /data/blaunet/fits/nburst_data/SN2/cube/30x30_error.fits in 0.06 s \u001b[0m\n" ] } ], "source": [ "SN2_fitter = NburstFitter.from_sitelle_data(SN2_axis, SN2_binned, SN2_error, SN2_fwhm, SN2_ORCS,\n", " FITS_DIR/'nburst_data/SN2/cube/',\n", " '30x30', force=True)\n", "SN2_fitter.configure_fit('MILES', stell_lib='MILES', mdegree=4, force=True)" ] }, { "cell_type": "code", "execution_count": 148, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "IDL Version 8.5.1 (linux x86_64 m64). (c) 2015, Exelis Visual Information Solutions, Inc., a subsidiary of Harris Corporation.\n", "Installation number: 500817.\n", "Licensed for use by: Observatoire de Meudon\n", "\n", "\n", "*********************************************\n", "** Personal settings are loaded and active **\n", "*********************************************\n", "\n", "Loading paths...\n", "+/usr/local/idl/\n", "+~/nburst/lib/astron/\n", "+~/nburst/lib/mpfit/\n", "+~/nburst/lib/mage-pipeline/\n", "+~/nburst/lib/spiker/\n", "+~/nburst/lib/voronoi_2d_binning/\n", "+~/nburst/\n", "...ok\n", "% Compiled module: VORONOI_CONVERT.\n", "% Compiled module: BINREV.\n", "% Compiled module: BINREVSCL.\n", "% Compiled module: BINREVVEC.\n", "% Compiled module: BINREVCUBE.\n", "% Compiled module: CONVOL_SPEC.\n", "% Compiled module: READMPFS.\n", "% Compiled module: READ_CALIB.\n", "% Compiled module: CONV_MPFS.\n", "% Compiled module: EVALUATE_NBURST_C.\n", "% Compiled module: FITFUNC_PXF_NB_TEMPLATE_C.\n", "% Compiled module: PPXF_NBURSTS.\n", "% Compiled module: READFITS.\n", "% Compiled module: SXPAR.\n", "% Compiled module: GETTOK.\n", "% Compiled module: VALID_NUM.\n", "% READFITS: Now reading 221 by 69 by 68 array\n", "% Compiled module: PARSE_SPECHDR.\n", "VelScale (km/s): 83.202195\n", "% READFITS: Now reading 221 by 69 by 68 array\n", "% Compiled module: WRITEFITS.\n", "% Compiled module: CHECK_FITS.\n", "% Compiled module: FXPAR.\n", "% Compiled module: FXADDPAR.\n", "% CHECK_FITS: NAXIS keywords in FITS header have been updated\n", "% Compiled module: SXDELPAR.\n", "% CHECK_FITS: NAXIS keywords in FITS header have been updated\n", "% CHECK_FITS: NAXIS keywords in FITS header have been updated\n", "% Compiled module: RANGE.\n", "% Compiled module: MKHDR.\n", "% Compiled module: SXADDPAR.\n", "% Compiled module: GET_DATE.\n", "% Compiled module: DAYCNV.\n", "% Compiled module: PPXF_1D3D.\n", "% Compiled module: HEADFITS.\n", "% Compiled module: FXPOSIT.\n", "% Compiled module: MRD_HREAD.\n", "% READFITS: Now reading 221 by 69 by 68 array\n", "% READFITS: Now reading 221 by 69 by 68 array\n", "% Compiled module: INTERPOL.\n", "WLMAX= 5143.7832\n", "Reading templates...% Compiled module: READ_SSP.\n", "% Compiled module: LOG_REBIN.\n", "% Compiled module: MRDFITS.\n", "% Compiled module: FXMOVE.\n", "% Compiled module: MRD_SKIP.\n", "% Compiled module: MATCH.\n", "% Compiled module: MRD_STRUCT.\n", "done\n", " 4692\n", "ibin= 1 / 4692\n", "Preparing templates: convolving...% Compiled module: CONV_MULTI.\n", "% Compiled module: SINC.\n", "done; deriving...% Compiled module: DERIVE_3D.\n", "% Compiled module: FMRCURVE.\n", "% Compiled module: SPLINE.\n", "% Compiled module: MPFIT.\n", "% Compiled module: INTERP_3D_C.\n", "% Compiled module: CSPLINE.\n", "% Compiled module: ROBUST_SIGMA.\n", "ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 5 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 6 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 7 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 8 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 9 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 10 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 11 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 12 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 13 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 14 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 15 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 16 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 17 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 18 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 19 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 20 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 21 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 22 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 23 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 24 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 25 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 26 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 27 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 28 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 29 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 30 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 31 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 32 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 33 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 34 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 35 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 36 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 37 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 38 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 39 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 40 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 41 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 42 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 43 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 44 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 45 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 46 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 47 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 48 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 49 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 50 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 51 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 52 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 53 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 54 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 55 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 56 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 57 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 58 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 59 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 60 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 61 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 62 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 63 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 64 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 65 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 66 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 67 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 68 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 69 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 70 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 71 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 72 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 73 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 74 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 75 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 76 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 77 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 78 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 79 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 80 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 81 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 82 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 83 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 84 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 63.5 121.6 0.022 -0.013 0.000 0.0004844.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.267 3.82e-10\n", "V_corr= -269.28105\n", "ibin= 85 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 78.1 156.3 0.073 0.013 0.000 0.000 0.705 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0378 4.63e-10\n", "V_corr= -254.68745\n", "ibin= 86 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 59.5 117.8 0.021 0.047 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+03 -0.124 5.03e-11\n", "V_corr= -273.30359\n", "ibin= 87 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 47.7 123.2 0.077 -0.008 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 8.69e+03 -0.179 2.32e-10\n", "V_corr= -285.10640\n", "ibin= 88 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 115.0 213.8 0.003 0.005 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 5.40e+03 0.228 2.22e-10\n", "V_corr= -217.78846\n", "ibin= 89 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 32.3 138.6 0.060 0.038 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+03 0.0452 6.18e-11\n", "V_corr= -300.51282\n", "ibin= 90 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 93.1 126.2 0.019 -0.003 0.000 0.000 0.630 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.121 4.36e-10\n", "V_corr= -239.73063\n", "ibin= 91 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 74.5 165.2 0.055 0.047 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 3.13e+03 0.00629 1.24e-10\n", "V_corr= -258.26024\n", "ibin= 92 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 29.8 120.4 -0.004 0.000 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 0.238 6.79e-11\n", "V_corr= -303.04670\n", "ibin= 93 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 70.0 173.0 0.098 -0.028 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 4.38e+03 0.160 2.10e-10\n", "V_corr= -262.80736\n", "ibin= 94 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 55.2 140.3 0.025 0.073 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+03 0.453 1.04e-10\n", "V_corr= -277.62824\n", "ibin= 95 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 48.1 89.2 -0.031 0.021 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.0446 8.88e-11\n", "V_corr= -284.69023\n", "ibin= 96 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 63.1 156.7 -0.041 0.024 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 5.83e-10\n", "V_corr= -269.68999\n", "ibin= 97 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 51.0 153.3 0.038 0.021 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 0.365 1.62e-10\n", "V_corr= -281.79372\n", "ibin= 98 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 65.6 146.8 0.139 0.037 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.133 6.75e-10\n", "V_corr= -267.18176\n", "ibin= 99 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 61.2 148.2 0.018 0.004 0.000 0.000 0.580 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.153 6.94e-10\n", "V_corr= -271.62050\n", "ibin= 100 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 76.9 132.1 0.001 0.050 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.261 4.21e-10\n", "V_corr= -255.86901\n", "ibin= 101 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 62.2 116.5 0.040 0.026 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.128 7.55e-10\n", "V_corr= -270.61487\n", "ibin= 102 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 51.2 75.3 -0.003 0.016 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 3.72e+03 -0.209 1.82e-10\n", "V_corr= -281.56564\n", "ibin= 103 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 70.2 134.5 0.006 0.015 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 -0.0389 7.03e-11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -262.63280\n", "ibin= 104 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 62.3 121.9 0.004 -0.005 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.231 7.58e-10\n", "V_corr= -270.52780\n", "ibin= 105 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 63.7 121.8 0.039 0.037 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 3.43e+03 -0.0289 1.91e-10\n", "V_corr= -269.06532\n", "ibin= 106 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 100.5 153.4 0.033 -0.019 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.295 7.44e-10\n", "V_corr= -232.34728\n", "ibin= 107 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 61.7 145.0 -0.015 -0.012 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 8.42e-10\n", "V_corr= -271.09628\n", "ibin= 108 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 317 91.4 117.0 -0.075 0.023 0.000 0.000 0.365 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.349 7.26e-10\n", "V_corr= -241.36444\n", "ibin= 109 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 101.4 121.0 0.034 0.001 0.000 0.000 0.696 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.304 7.92e-10\n", "V_corr= -231.37570\n", "ibin= 110 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 240 84.7 161.7 -0.031 0.139 0.000 0.000 0.310 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.109 9.72e-10\n", "V_corr= -248.11174\n", "ibin= 111 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 105.3 120.3 -0.026 0.033 0.000 0.000 0.288 NaN\n", "Ages, Metallicities, Weights:\n", " 3.22e+03 -0.0396 2.05e-10\n", "V_corr= -227.50286\n", "ibin= 112 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 106.9 144.8 0.025 0.026 0.000 0.000 0.671 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0564 1.03e-09\n", "V_corr= -225.93714\n", "ibin= 113 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 95.3 177.5 0.030 0.016 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 2.87e+03 0.556 3.05e-10\n", "V_corr= -237.54293\n", "ibin= 114 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 87.6 87.0 0.053 0.012 0.000 0.000 0.706 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.446 6.69e-10\n", "V_corr= -245.16083\n", "ibin= 115 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 104.8 101.1 -0.004 0.043 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 8.03e+03 0.0522 5.15e-10\n", "V_corr= -228.01917\n", "ibin= 116 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 96.4 148.6 -0.010 -0.024 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 9.08e-10\n", "V_corr= -236.39109\n", "ibin= 117 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 129.9 144.1 0.057 -0.027 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.201 7.17e-10\n", "V_corr= -202.93558\n", "ibin= 118 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 97.1 158.5 -0.002 0.011 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 2.23e+03 0.507 1.99e-10\n", "V_corr= -235.73179\n", "ibin= 119 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 105.6 151.0 0.065 -0.063 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 2.27e+03 -0.0813 1.24e-10\n", "V_corr= -227.21999\n", "ibin= 120 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 153.9 142.8 -0.044 0.020 0.000 0.000 0.379 NaN\n", "Ages, Metallicities, Weights:\n", " 6.96e+03 -0.0855 3.29e-10\n", "V_corr= -178.95336\n", "ibin= 121 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 121.1 112.6 -0.044 0.054 0.000 0.000 0.382 NaN\n", "Ages, Metallicities, Weights:\n", " 5.94e+03 -0.155 2.80e-10\n", "V_corr= -211.67104\n", "ibin= 122 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 152.6 148.3 -0.008 -0.008 0.000 0.000 0.624 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.241 7.40e-10\n", "V_corr= -180.19715\n", "ibin= 123 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 119.5 149.4 -0.049 0.019 0.000 0.000 0.319 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+03 0.559 1.43e-10\n", "V_corr= -213.26331\n", "ibin= 124 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 163.7 126.2 -0.085 0.008 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.281 7.38e-10\n", "V_corr= -169.05950\n", "ibin= 125 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 144.2 151.1 0.025 -0.029 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.257 7.32e-10\n", "V_corr= -188.57270\n", "ibin= 126 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 125.0 126.4 -0.013 -0.011 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.316 7.22e-10\n", "V_corr= -207.85260\n", "ibin= 127 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 148.3 115.2 -0.033 0.023 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 5.86e+03 -0.0854 3.07e-10\n", "V_corr= -184.54258\n", "ibin= 128 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 105.5 167.6 0.017 0.049 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 3.76e+03 0.549 3.34e-10\n", "V_corr= -227.28262\n", "ibin= 129 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 129.8 141.4 0.045 0.002 0.000 0.000 0.327 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.353 6.21e-10\n", "V_corr= -203.00745\n", "ibin= 130 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 139.5 128.4 -0.024 -0.002 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.526 4.83e-10\n", "V_corr= -193.33393\n", "ibin= 131 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 153.9 139.5 0.034 0.008 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0344 8.27e-10\n", "V_corr= -178.95238\n", "ibin= 132 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 117.5 124.8 0.033 -0.057 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 2.41e+03 -0.131 1.26e-10\n", "V_corr= -215.34642\n", "ibin= 133 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 160.3 136.1 -0.014 0.035 0.000 0.000 0.285 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 0.222 1.29e-10\n", "V_corr= -172.52267\n", "ibin= 134 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 212.3 162.0 0.012 -0.055 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.295 5.95e-10\n", "V_corr= -120.49625\n", "ibin= 135 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 73 161.0 99.0 0.030 -0.036 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.143 6.55e-10\n", "V_corr= -171.85780\n", "ibin= 136 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 184.1 173.8 0.009 -0.020 0.000 0.000 0.420 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+03 0.568 8.10e-11\n", "V_corr= -148.74931\n", "ibin= 137 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 138 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 139 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 140 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -22.3 25.0 -0.000 -0.001 0.000 0.000 1.034 NaN\n", "Ages, Metallicities, Weights:\n", " 2.17e+03 -0.628 4.10e-11\n", "V_corr= -355.10881\n", "ibin= 141 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 31.1 142.7 0.058 0.027 0.000 0.000 1.011 NaN\n", "Ages, Metallicities, Weights:\n", " 898. 0.625 3.66e-11\n", "V_corr= -301.69583\n", "ibin= 142 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 295 20.5 55.5 0.003 0.001 0.000 0.000 0.844 NaN\n", "Ages, Metallicities, Weights:\n", " 8.41e+03 -0.935 1.13e-10\n", "V_corr= -312.26127\n", "ibin= 143 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 300 26.3 31.5 0.001 -0.002 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 4.50e+03 -0.783 7.94e-11\n", "V_corr= -306.52042\n", "ibin= 144 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 18.0 171.3 0.037 -0.024 0.000 0.000 0.960 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+03 0.318 5.21e-11\n", "V_corr= -314.83210\n", "ibin= 145 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 11.4 176.8 0.002 -0.012 0.000 0.000 0.656 NaN\n", "Ages, Metallicities, Weights:\n", " 31.6 -0.604 2.03e-12\n", "V_corr= -321.42126\n", "ibin= 146 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 69.6 148.5 0.011 0.015 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.372 3.07e-10\n", "V_corr= -263.20140\n", "ibin= 147 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -21.8 219.0 -0.016 0.006 0.000 0.000 0.830 NaN\n", "Ages, Metallicities, Weights:\n", " 841. 0.689 4.20e-11\n", "V_corr= -354.61733\n", "ibin= 148 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -1.3 90.2 0.016 0.004 0.000 0.000 0.689 NaN\n", "Ages, Metallicities, Weights:\n", " 920. 0.0540 2.69e-11\n", "V_corr= -334.11972\n", "ibin= 149 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 5.9 109.4 -0.018 0.006 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 8.73e+03 -0.572 1.54e-10\n", "V_corr= -326.93496\n", "ibin= 150 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 118 43.2 178.5 -0.002 0.030 0.000 0.000 0.894 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+03 0.556 4.73e-11\n", "V_corr= -289.62269\n", "ibin= 151 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 77.7 134.6 -0.018 -0.003 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 -0.304 2.24e-10\n", "V_corr= -255.14019\n", "ibin= 152 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 54.8 152.3 0.040 0.044 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 7.15e+03 -0.00672 2.15e-10\n", "V_corr= -277.98943\n", "ibin= 153 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 290 53.7 57.7 -0.015 0.003 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 2.04e+03 -0.672 4.33e-11\n", "V_corr= -279.12023\n", "ibin= 154 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 33.4 118.3 -0.027 0.021 0.000 0.000 0.620 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.246 4.29e-10\n", "V_corr= -299.39781\n", "ibin= 155 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 52.7 91.9 0.034 -0.009 0.000 0.000 0.715 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+03 -0.207 4.02e-11\n", "V_corr= -280.15093\n", "ibin= 156 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 56.0 197.5 0.040 0.013 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0568 5.63e-10\n", "V_corr= -276.77935\n", "ibin= 157 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 113.3 145.0 -0.007 0.013 0.000 0.000 0.846 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0674 5.38e-10\n", "V_corr= -219.51442\n", "ibin= 158 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 46.7 152.0 0.049 0.025 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 2.09e+03 0.0188 8.19e-11\n", "V_corr= -286.09163\n", "ibin= 159 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 70.0 122.3 0.053 0.014 0.000 0.000 0.762 NaN\n", "Ages, Metallicities, Weights:\n", " 5.36e+03 -0.290 1.70e-10\n", "V_corr= -262.81074\n", "ibin= 160 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 48.5 117.9 0.004 0.048 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+03 0.489 7.60e-11\n", "V_corr= -284.35288\n", "ibin= 161 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 109.1 135.6 0.006 -0.005 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 4.57e+03 -0.312 1.89e-10\n", "V_corr= -223.67345\n", "ibin= 162 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 31.3 105.1 0.041 0.026 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 5.63e+03 -0.236 1.96e-10\n", "V_corr= -301.47179\n", "ibin= 163 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 35.9 122.6 0.000 0.080 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.331 5.19e-10\n", "V_corr= -296.89421\n", "ibin= 164 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 110.3 124.8 -0.000 0.017 0.000 0.000 0.659 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.250 5.93e-10\n", "V_corr= -222.47455\n", "ibin= 165 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 53.3 175.5 -0.073 0.091 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0332 6.66e-10\n", "V_corr= -279.47843\n", "ibin= 166 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 64.9 130.1 0.061 0.047 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+03 0.570 7.10e-11\n", "V_corr= -267.89454\n", "ibin= 167 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 70.9 130.1 0.011 0.011 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 3.17e+03 0.129 1.75e-10\n", "V_corr= -261.86305\n", "ibin= 168 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 87.6 144.0 -0.010 0.028 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+03 0.545 8.27e-11\n", "V_corr= -245.18989\n", "ibin= 169 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 57.5 112.5 0.027 0.044 0.000 0.000 0.365 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 -0.159 4.88e-10\n", "V_corr= -275.29004\n", "ibin= 170 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 28.0 191.8 -0.010 0.034 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0524 7.90e-10\n", "V_corr= -304.77001\n", "ibin= 171 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 80.7 96.1 -0.012 0.022 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 4.66e+03 -0.402 1.99e-10\n", "V_corr= -252.06782\n", "ibin= 172 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 77.2 154.9 -0.037 0.002 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 6.88e+03 -0.00296 3.72e-10\n", "V_corr= -255.58731\n", "ibin= 173 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 60.6 133.4 -0.060 0.063 0.000 0.000 0.353 NaN\n", "Ages, Metallicities, Weights:\n", " 3.00e+03 -0.0548 1.62e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -272.16006\n", "ibin= 174 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 61.5 143.3 0.028 0.004 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 7.62e+03 -0.0864 4.10e-10\n", "V_corr= -271.34346\n", "ibin= 175 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 63.1 126.7 0.052 0.040 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 7.95e-10\n", "V_corr= -269.75300\n", "ibin= 176 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 81.8 96.6 -0.010 0.033 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 3.70e+03 -0.0320 2.32e-10\n", "V_corr= -251.03057\n", "ibin= 177 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 86.0 169.7 0.015 0.080 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0502 9.88e-10\n", "V_corr= -246.77215\n", "ibin= 178 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 95.5 137.1 0.036 0.088 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 3.54e+03 0.578 3.81e-10\n", "V_corr= -237.27890\n", "ibin= 179 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 82.7 98.5 0.011 0.023 0.000 0.000 0.257 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.351 7.87e-10\n", "V_corr= -250.15124\n", "ibin= 180 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 65.1 146.5 0.004 0.109 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+04 0.375 1.04e-09\n", "V_corr= -267.67936\n", "ibin= 181 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 77.4 165.0 0.011 0.029 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.40e+04 0.503 1.31e-09\n", "V_corr= -255.41246\n", "ibin= 182 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 100.7 123.7 0.000 -0.033 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 2.34e+03 0.0678 1.76e-10\n", "V_corr= -232.09451\n", "ibin= 183 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 102.1 120.8 -0.020 0.023 0.000 0.000 0.290 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.221 8.88e-10\n", "V_corr= -230.73198\n", "ibin= 184 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 79.5 114.1 0.012 0.015 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 2.31e+03 0.00318 1.60e-10\n", "V_corr= -253.35267\n", "ibin= 185 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 109.8 131.3 -0.019 0.006 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 4.99e+03 -0.0942 3.13e-10\n", "V_corr= -222.98116\n", "ibin= 186 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 119.9 111.9 0.027 0.062 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.249 7.72e-10\n", "V_corr= -212.92722\n", "ibin= 187 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 126.7 142.5 0.015 0.019 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 2.28e+03 0.467 1.87e-10\n", "V_corr= -206.08036\n", "ibin= 188 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 106.8 148.2 0.005 0.048 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0729 8.64e-10\n", "V_corr= -226.02626\n", "ibin= 189 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 123.3 133.6 -0.012 -0.041 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.266 7.65e-10\n", "V_corr= -209.48236\n", "ibin= 190 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 107.4 141.4 -0.009 -0.024 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0721 8.82e-10\n", "V_corr= -225.37365\n", "ibin= 191 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 134.1 128.4 0.015 0.001 0.000 0.000 0.316 NaN\n", "Ages, Metallicities, Weights:\n", " 1.00e+04 -0.0475 5.18e-10\n", "V_corr= -198.66972\n", "ibin= 192 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 160.7 186.8 -0.025 -0.012 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 0.191 1.01e-09\n", "V_corr= -172.06366\n", "ibin= 193 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 105.4 131.6 0.045 0.036 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.0570 5.88e-10\n", "V_corr= -227.36884\n", "ibin= 194 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 102.5 129.4 -0.066 0.038 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+03 0.648 9.98e-11\n", "V_corr= -230.31997\n", "ibin= 195 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 142.2 161.3 -0.058 -0.024 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00150 9.25e-10\n", "V_corr= -190.65819\n", "ibin= 196 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 130.3 159.2 0.036 -0.022 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.189 8.25e-10\n", "V_corr= -202.47907\n", "ibin= 197 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 128.3 148.0 -0.069 0.023 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+03 0.616 1.13e-10\n", "V_corr= -204.55550\n", "ibin= 198 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 148.4 122.9 -0.019 -0.001 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.157 7.84e-10\n", "V_corr= -184.39844\n", "ibin= 199 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 108.0 163.4 -0.057 -0.045 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.110 8.41e-10\n", "V_corr= -224.76250\n", "ibin= 200 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 65.1 86.5 0.018 -0.003 0.000 0.000 0.756 NaN\n", "Ages, Metallicities, Weights:\n", " 946. 0.456 8.85e-11\n", "V_corr= -267.71529\n", "ibin= 201 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 112.5 106.6 0.017 -0.006 0.000 0.000 0.548 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.867 4.40e-10\n", "V_corr= -220.30677\n", "ibin= 202 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 170.7 133.2 -0.017 -0.000 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0760 7.78e-10\n", "V_corr= -162.06175\n", "ibin= 203 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 159.0 148.8 0.044 0.032 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0422 7.30e-10\n", "V_corr= -173.78519\n", "ibin= 204 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 175.1 129.2 -0.005 -0.047 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 5.90e+03 -0.194 2.43e-10\n", "V_corr= -157.70803\n", "ibin= 205 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 199.7 144.6 -0.033 0.003 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 4.18e+03 -0.322 1.51e-10\n", "V_corr= -133.13211\n", "ibin= 206 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 207 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 208 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 209 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 46.4 108.1 0.028 0.001 0.000 0.000 1.284 NaN\n", "Ages, Metallicities, Weights:\n", " 2.08e+03 -0.589 3.93e-11\n", "V_corr= -286.40365\n", "ibin= 210 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 5.8 25.0 -0.001 -0.005 0.000 0.000 0.810 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.24 1.43e-10\n", "V_corr= -326.96362\n", "ibin= 211 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 240 83.3 270.8 0.051 0.012 0.000 0.000 1.400 NaN\n", "Ages, Metallicities, Weights:\n", " 4.67e+03 0.227 1.52e-10\n", "V_corr= -249.48876\n", "ibin= 212 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 28.1 147.4 0.024 -0.001 0.000 0.000 0.737 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.225 3.69e-10\n", "V_corr= -304.74346\n", "ibin= 213 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 254 47.8 157.3 0.001 0.041 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.628 2.15e-10\n", "V_corr= -285.00928\n", "ibin= 214 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 6.9 76.5 -0.006 -0.006 0.000 0.000 1.112 NaN\n", "Ages, Metallicities, Weights:\n", " 8.10e+03 -0.645 1.34e-10\n", "V_corr= -325.91191\n", "ibin= 215 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 11.5 25.0 0.002 -0.003 0.000 0.000 1.700 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 -1.30 1.17e-10\n", "V_corr= -321.32106\n", "ibin= 216 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 165 -25.0 61.8 -0.008 0.004 0.000 0.000 0.659 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+03 -0.379 3.56e-11\n", "V_corr= -357.85683\n", "ibin= 217 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 39.2 28.6 0.000 -0.001 0.000 0.000 0.872 NaN\n", "Ages, Metallicities, Weights:\n", " 826. -0.183 2.80e-11\n", "V_corr= -293.63141\n", "ibin= 218 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 33.1 127.7 0.012 -0.008 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 911. 0.0919 2.77e-11\n", "V_corr= -299.70655\n", "ibin= 219 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 18.6 94.9 0.026 -0.003 0.000 0.000 0.908 NaN\n", "Ages, Metallicities, Weights:\n", " 4.77e+03 -0.439 1.15e-10\n", "V_corr= -314.19460\n", "ibin= 220 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 148 105.3 152.2 0.016 -0.008 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 4.32e-10\n", "V_corr= -227.47176\n", "ibin= 221 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 53.5 117.0 0.017 0.004 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.544 3.23e-10\n", "V_corr= -279.33098\n", "ibin= 222 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 57.5 137.9 0.006 -0.021 0.000 0.000 0.949 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.580 3.31e-10\n", "V_corr= -275.34835\n", "ibin= 223 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 62.9 72.5 0.023 -0.005 0.000 0.000 0.725 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.691 2.65e-10\n", "V_corr= -269.93409\n", "ibin= 224 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 93.7 132.8 0.016 0.035 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.455 3.80e-10\n", "V_corr= -239.06663\n", "ibin= 225 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 57.6 99.9 -0.015 0.006 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.328 4.41e-10\n", "V_corr= -275.21978\n", "ibin= 226 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 47.2 179.5 0.042 0.075 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0354 5.66e-10\n", "V_corr= -285.56799\n", "ibin= 227 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 295 28.9 31.3 0.003 -0.006 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -1.09 2.10e-10\n", "V_corr= -303.92892\n", "ibin= 228 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 52.6 139.6 0.014 -0.017 0.000 0.000 0.585 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.629 3.71e-10\n", "V_corr= -280.18750\n", "ibin= 229 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 19.6 113.2 0.016 -0.023 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+03 0.0957 7.68e-11\n", "V_corr= -313.22677\n", "ibin= 230 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 40.5 163.8 -0.004 0.118 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 0.215 6.10e-10\n", "V_corr= -292.34939\n", "ibin= 231 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 44.0 102.4 0.025 0.032 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 7.26e+03 -0.262 2.40e-10\n", "V_corr= -288.79777\n", "ibin= 232 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 53.5 160.7 0.049 -0.017 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 6.72e+03 -0.258 2.46e-10\n", "V_corr= -279.28536\n", "ibin= 233 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 53.2 203.4 0.044 0.086 0.000 0.000 0.702 NaN\n", "Ages, Metallicities, Weights:\n", " 7.37e+03 0.273 4.09e-10\n", "V_corr= -279.63191\n", "ibin= 234 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 103.6 155.5 0.023 0.031 0.000 0.000 0.845 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 -0.245 5.48e-10\n", "V_corr= -229.25674\n", "ibin= 235 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 39.6 155.0 0.017 0.044 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 922. 0.524 6.32e-11\n", "V_corr= -293.24476\n", "ibin= 236 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 81.2 99.7 -0.032 0.015 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 5.85e+03 -0.179 2.66e-10\n", "V_corr= -251.57486\n", "ibin= 237 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 61.5 102.1 0.011 -0.048 0.000 0.000 0.278 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+04 -0.407 4.56e-10\n", "V_corr= -271.28182\n", "ibin= 238 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 44.4 129.8 0.025 0.048 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.196 7.12e-10\n", "V_corr= -288.41355\n", "ibin= 239 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 52.0 145.0 -0.025 0.124 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 6.95e+03 0.175 4.19e-10\n", "V_corr= -280.84366\n", "ibin= 240 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 77.8 114.7 -0.060 0.018 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.356 5.90e-10\n", "V_corr= -255.01467\n", "ibin= 241 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 76.9 153.9 -0.005 0.064 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 9.90e+03 0.165 6.76e-10\n", "V_corr= -255.95817\n", "ibin= 242 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 51.9 173.5 -0.003 0.054 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+03 0.623 1.21e-10\n", "V_corr= -280.95736\n", "ibin= 243 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 49.7 136.4 -0.002 0.053 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0235 9.55e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -283.09638\n", "ibin= 244 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 76.8 146.1 0.032 0.008 0.000 0.000 0.292 NaN\n", "Ages, Metallicities, Weights:\n", " 3.14e+03 -0.0237 2.04e-10\n", "V_corr= -256.05206\n", "ibin= 245 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 72.7 133.6 -0.047 0.027 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0201 9.94e-10\n", "V_corr= -260.11253\n", "ibin= 246 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 85.3 159.9 -0.023 0.002 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0365 1.03e-09\n", "V_corr= -247.54418\n", "ibin= 247 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 77.0 164.4 -0.011 0.034 0.000 0.000 0.738 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0494 1.01e-09\n", "V_corr= -255.77063\n", "ibin= 248 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 110.1 115.8 -0.012 -0.009 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 7.36e+03 -0.0104 4.92e-10\n", "V_corr= -222.65978\n", "ibin= 249 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 94.3 125.1 -0.042 0.041 0.000 0.000 0.334 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.201 9.21e-10\n", "V_corr= -238.45995\n", "ibin= 250 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 96.8 152.3 0.003 -0.043 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 8.36e+03 0.0480 6.10e-10\n", "V_corr= -235.97220\n", "ibin= 251 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 91.7 137.3 0.005 -0.034 0.000 0.000 0.275 NaN\n", "Ages, Metallicities, Weights:\n", " 919. 0.673 1.10e-10\n", "V_corr= -241.11884\n", "ibin= 252 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 92.7 134.7 0.035 -0.042 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.316 8.90e-10\n", "V_corr= -240.06446\n", "ibin= 253 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 95.4 143.4 -0.065 -0.076 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 2.06e+03 -0.0203 1.55e-10\n", "V_corr= -237.45867\n", "ibin= 254 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 117.8 141.4 -0.042 0.022 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 7.59e+03 -0.0134 4.61e-10\n", "V_corr= -214.99719\n", "ibin= 255 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 124.6 179.1 -0.030 -0.036 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 7.62e+03 0.252 5.64e-10\n", "V_corr= -208.22243\n", "ibin= 256 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 120.7 166.8 0.027 0.026 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 2.97e+03 0.551 2.82e-10\n", "V_corr= -212.10939\n", "ibin= 257 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 86.9 138.0 0.043 -0.018 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 762. 0.620 7.32e-11\n", "V_corr= -245.93742\n", "ibin= 258 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 122.6 109.7 0.010 0.025 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.355 7.42e-10\n", "V_corr= -210.16201\n", "ibin= 259 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 140.5 177.8 -0.029 -0.056 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0180 9.93e-10\n", "V_corr= -192.31851\n", "ibin= 260 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 145.6 140.9 -0.024 0.015 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0751 8.87e-10\n", "V_corr= -187.21657\n", "ibin= 261 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 138.8 154.2 -0.026 -0.050 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 7.18e+03 0.0919 4.89e-10\n", "V_corr= -194.03186\n", "ibin= 262 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 138.5 109.5 -0.097 -0.012 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 3.91e+03 -0.0502 2.41e-10\n", "V_corr= -194.34294\n", "ibin= 263 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 143.2 139.0 0.080 0.011 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 6.62e+03 0.0200 3.95e-10\n", "V_corr= -189.56717\n", "ibin= 264 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 122.6 142.7 -0.054 -0.022 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 0.00197 7.14e-10\n", "V_corr= -210.24974\n", "ibin= 265 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 135.9 137.2 0.025 -0.037 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 5.37e+03 0.129 3.56e-10\n", "V_corr= -196.87261\n", "ibin= 266 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 137.1 142.6 0.021 -0.049 0.000 0.000 0.807 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -0.0761 5.76e-10\n", "V_corr= -195.73376\n", "ibin= 267 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 152.7 145.9 0.004 -0.071 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 7.73e+03 0.0775 4.92e-10\n", "V_corr= -180.08672\n", "ibin= 268 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 121.7 145.8 -0.016 -0.002 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.0662 7.20e-10\n", "V_corr= -211.11311\n", "ibin= 269 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 126.5 150.1 0.029 -0.048 0.000 0.000 0.350 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+03 0.585 1.08e-10\n", "V_corr= -206.31491\n", "ibin= 270 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 120.1 138.0 0.011 -0.037 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.189 7.81e-10\n", "V_corr= -212.72857\n", "ibin= 271 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 139.4 168.8 -0.079 -0.070 0.000 0.000 0.418 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 7.46e-10\n", "V_corr= -193.38599\n", "ibin= 272 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 163.8 166.2 -0.065 0.026 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+03 0.689 1.39e-10\n", "V_corr= -169.03962\n", "ibin= 273 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 182.4 114.4 -0.040 -0.030 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 -0.139 4.45e-10\n", "V_corr= -150.43045\n", "ibin= 274 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 180.4 163.4 -0.084 -0.016 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0580 6.72e-10\n", "V_corr= -152.45130\n", "ibin= 275 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 276 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 277 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 278 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 209 79.8 134.9 0.015 0.004 0.000 0.000 2.083 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+03 -0.571 3.02e-11\n", "V_corr= -252.96279\n", "ibin= 279 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 462 28.2 262.6 0.021 0.024 0.000 0.000 2.944 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.618 4.23e-11\n", "V_corr= -304.57701\n", "ibin= 280 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 48.1 30.5 -0.000 0.000 0.000 0.000 0.937 NaN\n", "Ages, Metallicities, Weights:\n", " 3.98e+03 -0.306 1.05e-10\n", "V_corr= -284.73191\n", "ibin= 281 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 24.4 225.7 -0.010 -0.003 0.000 0.000 1.145 NaN\n", "Ages, Metallicities, Weights:\n", " 7.52e+03 0.232 2.56e-10\n", "V_corr= -308.44800\n", "ibin= 282 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 7.5 128.7 0.002 0.052 0.000 0.000 0.991 NaN\n", "Ages, Metallicities, Weights:\n", " 7.99e+03 -0.337 1.57e-10\n", "V_corr= -325.34566\n", "ibin= 283 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 35.6 119.4 0.031 -0.003 0.000 0.000 0.974 NaN\n", "Ages, Metallicities, Weights:\n", " 4.25e+03 -0.290 1.05e-10\n", "V_corr= -297.16339\n", "ibin= 284 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 52.3 98.7 0.005 0.025 0.000 0.000 0.946 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+03 -0.0335 5.01e-11\n", "V_corr= -280.48167\n", "ibin= 285 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 321 -15.4 38.4 -0.001 0.001 0.000 0.000 0.832 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+03 -0.863 2.61e-11\n", "V_corr= -348.16117\n", "ibin= 286 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 38.5 147.7 -0.002 0.020 0.000 0.000 0.597 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.331 3.69e-10\n", "V_corr= -294.27149\n", "ibin= 287 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 19.2 120.5 -0.013 -0.027 0.000 0.000 0.691 NaN\n", "Ages, Metallicities, Weights:\n", " 925. 0.128 3.03e-11\n", "V_corr= -313.60070\n", "ibin= 288 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 3.0 162.3 0.008 0.001 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.378 3.08e-10\n", "V_corr= -329.80088\n", "ibin= 289 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 83.6 111.8 0.016 0.001 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 5.03e+03 -0.301 1.35e-10\n", "V_corr= -249.22805\n", "ibin= 290 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 139 61.9 180.6 0.011 0.002 0.000 0.000 0.929 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.249 4.39e-10\n", "V_corr= -270.88559\n", "ibin= 291 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 37.0 124.0 -0.002 0.030 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.690 2.63e-10\n", "V_corr= -295.85059\n", "ibin= 292 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 296 108.2 169.4 0.003 -0.021 0.000 0.000 0.787 NaN\n", "Ages, Metallicities, Weights:\n", " 8.25e+03 -0.173 2.36e-10\n", "V_corr= -224.61695\n", "ibin= 293 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 26.7 103.5 0.034 0.035 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 -0.0952 6.89e-11\n", "V_corr= -306.14233\n", "ibin= 294 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 44.4 199.0 0.054 0.009 0.000 0.000 0.632 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0195 5.70e-10\n", "V_corr= -288.45138\n", "ibin= 295 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 237 18.9 158.8 0.047 0.081 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.308 4.51e-10\n", "V_corr= -313.92080\n", "ibin= 296 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 65.6 148.4 0.063 0.003 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 7.52e+03 -0.104 2.65e-10\n", "V_corr= -267.17497\n", "ibin= 297 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 79.9 89.2 0.017 0.004 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 -0.578 3.68e-10\n", "V_corr= -252.92985\n", "ibin= 298 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 48.6 128.2 0.014 0.060 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.372 4.83e-10\n", "V_corr= -284.19671\n", "ibin= 299 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 43.9 161.6 -0.005 0.084 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 6.09e-10\n", "V_corr= -288.91587\n", "ibin= 300 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 63.6 159.3 0.027 0.070 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0106 6.79e-10\n", "V_corr= -269.17115\n", "ibin= 301 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 26.2 106.7 -0.000 -0.005 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 7.41e+03 -0.329 2.51e-10\n", "V_corr= -306.60910\n", "ibin= 302 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 85.2 146.4 0.001 -0.002 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.242 6.53e-10\n", "V_corr= -247.59496\n", "ibin= 303 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 77.9 60.2 0.002 0.013 0.000 0.000 0.362 NaN\n", "Ages, Metallicities, Weights:\n", " 4.70e+03 -0.411 1.84e-10\n", "V_corr= -254.88146\n", "ibin= 304 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 48.9 174.8 -0.006 0.081 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 7.41e+03 0.175 4.27e-10\n", "V_corr= -283.95192\n", "ibin= 305 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 61.4 86.9 0.051 0.025 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 9.24e+03 -0.351 3.35e-10\n", "V_corr= -271.41107\n", "ibin= 306 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 39.6 126.7 -0.019 -0.010 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 5.91e+03 -0.186 2.83e-10\n", "V_corr= -293.16890\n", "ibin= 307 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 73 43.6 68.5 0.012 0.002 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.497 5.98e-10\n", "V_corr= -289.17226\n", "ibin= 308 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 81.9 146.5 -0.023 -0.007 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 9.08e+03 0.0502 5.28e-10\n", "V_corr= -250.86850\n", "ibin= 309 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 65.5 93.9 -0.006 -0.012 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.504 6.28e-10\n", "V_corr= -267.27811\n", "ibin= 310 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 56.8 115.8 0.028 0.037 0.000 0.000 0.368 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+03 0.380 1.45e-10\n", "V_corr= -275.98896\n", "ibin= 311 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 71.3 134.2 0.001 0.006 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 0.126 1.70e-10\n", "V_corr= -261.54886\n", "ibin= 312 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 60.7 159.5 -0.033 0.033 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 0.670 1.19e-09\n", "V_corr= -272.11419\n", "ibin= 313 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 86.4 140.0 0.004 0.016 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.210 8.92e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -246.40727\n", "ibin= 314 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 97.4 158.0 0.023 -0.004 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 0.0467 7.36e-10\n", "V_corr= -235.42167\n", "ibin= 315 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 74.3 138.5 0.039 0.039 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 4.99e+03 0.103 3.65e-10\n", "V_corr= -258.46130\n", "ibin= 316 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 96.3 93.9 -0.025 0.004 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.290 8.78e-10\n", "V_corr= -236.46938\n", "ibin= 317 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 71.6 173.6 -0.046 0.023 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+03 0.597 1.34e-10\n", "V_corr= -261.21901\n", "ibin= 318 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 69.1 119.3 0.028 0.029 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 6.12e+03 -0.0334 4.20e-10\n", "V_corr= -263.66609\n", "ibin= 319 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 104.5 116.9 -0.044 0.024 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 9.51e-10\n", "V_corr= -228.33620\n", "ibin= 320 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 94.0 126.3 0.033 0.016 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.209 9.69e-10\n", "V_corr= -238.76535\n", "ibin= 321 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 103.3 137.0 0.022 0.065 0.000 0.000 0.295 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.162 9.41e-10\n", "V_corr= -229.50398\n", "ibin= 322 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 106.5 144.6 0.036 0.032 0.000 0.000 1.062 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.000793 1.05e-09\n", "V_corr= -226.35512\n", "ibin= 323 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 138.6 124.4 0.015 0.063 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.189 8.27e-10\n", "V_corr= -194.17878\n", "ibin= 324 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 113.4 184.0 -0.034 0.010 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.120 1.04e-09\n", "V_corr= -219.40314\n", "ibin= 325 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 109.9 122.2 0.033 0.001 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.392 7.54e-10\n", "V_corr= -222.86214\n", "ibin= 326 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 95.1 140.1 -0.023 0.069 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 2.72e+03 0.505 2.69e-10\n", "V_corr= -237.67527\n", "ibin= 327 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 117.4 128.3 -0.013 0.035 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 8.45e-10\n", "V_corr= -215.45243\n", "ibin= 328 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 93.7 146.5 0.029 0.036 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0721 9.51e-10\n", "V_corr= -239.08606\n", "ibin= 329 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 140.9 127.0 0.042 0.001 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.237 8.43e-10\n", "V_corr= -191.89429\n", "ibin= 330 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 157.8 151.4 -0.052 -0.028 0.000 0.000 0.798 NaN\n", "Ages, Metallicities, Weights:\n", " 8.05e+03 0.0398 5.19e-10\n", "V_corr= -174.99475\n", "ibin= 331 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 131.3 100.7 0.045 0.029 0.000 0.000 0.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.413 6.82e-10\n", "V_corr= -201.46661\n", "ibin= 332 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 132.2 147.3 0.038 0.016 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 867. 0.494 7.12e-11\n", "V_corr= -200.58754\n", "ibin= 333 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 107.2 118.6 -0.005 0.019 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.415 6.87e-10\n", "V_corr= -225.61149\n", "ibin= 334 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 97.3 182.4 0.019 0.017 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+03 0.442 1.66e-10\n", "V_corr= -235.53291\n", "ibin= 335 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 147.2 168.2 -0.008 0.055 0.000 0.000 0.275 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.242 1.06e-09\n", "V_corr= -185.62834\n", "ibin= 336 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 127.0 164.5 0.093 0.010 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.00917 7.55e-10\n", "V_corr= -205.82590\n", "ibin= 337 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 138.4 148.1 0.003 0.011 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 8.03e-10\n", "V_corr= -194.39809\n", "ibin= 338 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 147.8 145.6 0.031 -0.072 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.276 7.72e-10\n", "V_corr= -184.99771\n", "ibin= 339 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 114.0 150.1 0.069 0.025 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.260 7.20e-10\n", "V_corr= -218.85572\n", "ibin= 340 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 125.2 150.1 0.005 -0.034 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.105 8.23e-10\n", "V_corr= -207.63006\n", "ibin= 341 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 150.4 130.7 -0.025 0.074 0.000 0.000 0.793 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 7.29e-10\n", "V_corr= -182.38895\n", "ibin= 342 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 168.0 157.3 -0.056 -0.032 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 5.15e+03 -0.158 2.39e-10\n", "V_corr= -164.81979\n", "ibin= 343 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 179.2 163.5 -0.090 0.045 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.412 9.82e-10\n", "V_corr= -153.65103\n", "ibin= 344 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 345 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 346 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 347 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 29.2 108.6 0.007 0.007 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+03 -0.493 2.69e-11\n", "V_corr= -303.57447\n", "ibin= 348 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 43.7 122.6 -0.013 -0.003 0.000 0.000 0.945 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.327 3.39e-10\n", "V_corr= -289.12923\n", "ibin= 349 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 49.2 213.8 0.024 0.001 0.000 0.000 1.110 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 0.124 4.48e-10\n", "V_corr= -283.57367\n", "ibin= 350 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -2.2 59.7 0.006 -0.000 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 820. 0.172 2.54e-11\n", "V_corr= -335.05097\n", "ibin= 351 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -7.7 47.4 0.001 -0.002 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 -1.08 1.34e-10\n", "V_corr= -340.55856\n", "ibin= 352 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 47.4 35.9 -0.000 -0.002 0.000 0.000 0.814 NaN\n", "Ages, Metallicities, Weights:\n", " 5.92e+03 -0.959 9.59e-11\n", "V_corr= -285.38780\n", "ibin= 353 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 24.8 147.2 0.018 -0.016 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 -0.925 1.62e-10\n", "V_corr= -308.05464\n", "ibin= 354 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 32.7 146.6 0.062 0.029 0.000 0.000 0.910 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.0329 2.93e-11\n", "V_corr= -300.09358\n", "ibin= 355 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 322 -37.5 62.1 -0.007 0.002 0.000 0.000 0.852 NaN\n", "Ages, Metallicities, Weights:\n", " 3.13e+03 -0.951 5.43e-11\n", "V_corr= -370.33301\n", "ibin= 356 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 94.0 198.4 0.003 -0.012 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 3.24e+03 0.129 1.14e-10\n", "V_corr= -238.81101\n", "ibin= 357 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 25.0 75.8 -0.001 0.004 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.310 3.25e-10\n", "V_corr= -307.77833\n", "ibin= 358 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 19.9 108.4 0.043 0.016 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.391 3.84e-10\n", "V_corr= -312.89710\n", "ibin= 359 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 6.2 106.0 0.012 0.017 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 3.12e+03 -0.257 9.30e-11\n", "V_corr= -326.62492\n", "ibin= 360 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 115 23.4 162.1 -0.008 0.000 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.439 3.97e-10\n", "V_corr= -309.44290\n", "ibin= 361 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 37.4 156.6 0.053 0.011 0.000 0.000 0.806 NaN\n", "Ages, Metallicities, Weights:\n", " 706. 0.631 4.04e-11\n", "V_corr= -295.42972\n", "ibin= 362 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 40.5 232.5 -0.058 0.044 0.000 0.000 1.188 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.101 6.09e-10\n", "V_corr= -292.30100\n", "ibin= 363 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 47.4 154.3 -0.029 -0.003 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 2.34e+03 -0.0947 8.87e-11\n", "V_corr= -285.44964\n", "ibin= 364 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 58.4 157.9 0.102 0.003 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.123 4.53e-10\n", "V_corr= -274.45120\n", "ibin= 365 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 197 11.0 106.7 0.026 0.012 0.000 0.000 0.781 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.579 3.30e-10\n", "V_corr= -321.79408\n", "ibin= 366 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 40.4 118.2 -0.000 0.004 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 5.77e+03 -0.0931 2.23e-10\n", "V_corr= -292.44493\n", "ibin= 367 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 240 48.5 145.5 0.061 -0.007 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+03 0.207 4.76e-11\n", "V_corr= -284.28430\n", "ibin= 368 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 0.1 96.4 -0.010 -0.015 0.000 0.000 0.832 NaN\n", "Ages, Metallicities, Weights:\n", " 2.22e+03 -0.551 7.59e-11\n", "V_corr= -332.75757\n", "ibin= 369 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 45.9 131.3 0.055 0.051 0.000 0.000 0.718 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.485 6.27e-11\n", "V_corr= -286.86888\n", "ibin= 370 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 62.9 149.9 -0.071 0.002 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 8.77e+03 0.0786 4.40e-10\n", "V_corr= -269.88761\n", "ibin= 371 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 67.3 109.6 -0.060 -0.004 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.462 4.88e-10\n", "V_corr= -265.49124\n", "ibin= 372 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 60.7 146.9 0.045 0.034 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.198 7.64e-10\n", "V_corr= -272.12851\n", "ibin= 373 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 253 22.9 213.3 -0.040 0.095 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.673 1.93e-09\n", "V_corr= -309.88585\n", "ibin= 374 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 58.8 176.7 -0.072 0.094 0.000 0.000 0.560 NaN\n", "Ages, Metallicities, Weights:\n", " 2.94e+03 0.597 2.73e-10\n", "V_corr= -273.95899\n", "ibin= 375 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 58.1 115.3 0.092 0.012 0.000 0.000 0.298 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 7.30e-10\n", "V_corr= -274.70475\n", "ibin= 376 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 55.8 88.1 0.055 0.006 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.389 6.84e-10\n", "V_corr= -276.97802\n", "ibin= 377 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 34.0 105.2 -0.023 0.018 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.352 7.35e-10\n", "V_corr= -298.83504\n", "ibin= 378 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 64.0 167.7 -0.012 -0.005 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 8.38e+03 -0.0168 5.05e-10\n", "V_corr= -268.77969\n", "ibin= 379 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 55.0 159.8 0.018 0.073 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0456 9.43e-10\n", "V_corr= -277.78702\n", "ibin= 380 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 53.3 131.4 0.049 0.010 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.108 9.75e-10\n", "V_corr= -279.52712\n", "ibin= 381 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 75.9 112.0 -0.028 0.024 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.253 8.92e-10\n", "V_corr= -256.93934\n", "ibin= 382 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 57.3 131.4 0.036 0.061 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 3.19e+03 0.00113 2.25e-10\n", "V_corr= -275.49562\n", "ibin= 383 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 87 79.9 85.4 0.026 0.006 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 -0.338 5.17e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -252.90015\n", "ibin= 384 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 66.3 122.0 0.070 0.027 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 2.47e+03 -0.0180 1.82e-10\n", "V_corr= -266.52845\n", "ibin= 385 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 82.1 141.3 0.096 0.013 0.000 0.000 0.338 NaN\n", "Ages, Metallicities, Weights:\n", " 6.68e+03 -0.0118 4.73e-10\n", "V_corr= -250.69597\n", "ibin= 386 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 110.0 128.6 0.004 -0.022 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 6.01e+03 -0.0581 4.21e-10\n", "V_corr= -222.77148\n", "ibin= 387 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 83.8 142.2 -0.005 0.030 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.213 1.00e-09\n", "V_corr= -249.02337\n", "ibin= 388 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 110.0 120.5 -0.015 0.027 0.000 0.000 0.676 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.173 1.02e-09\n", "V_corr= -222.80063\n", "ibin= 389 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 105.0 123.0 -0.032 0.001 0.000 0.000 0.286 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.293 9.22e-10\n", "V_corr= -227.84464\n", "ibin= 390 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 105.7 150.2 -0.026 -0.016 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 -0.225 8.36e-10\n", "V_corr= -227.09174\n", "ibin= 391 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 126.9 133.0 -0.003 -0.023 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 3.28e+03 -0.0158 2.26e-10\n", "V_corr= -205.86399\n", "ibin= 392 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 114.2 155.7 -0.009 0.075 0.000 0.000 0.304 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 0.185 9.51e-10\n", "V_corr= -218.57065\n", "ibin= 393 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 117.9 121.4 0.042 -0.024 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 3.89e+03 -0.271 2.57e-10\n", "V_corr= -214.89529\n", "ibin= 394 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 116.9 149.6 0.058 0.048 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 2.51e+03 0.444 2.49e-10\n", "V_corr= -215.89716\n", "ibin= 395 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 102.1 156.5 0.024 0.013 0.000 0.000 0.246 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.204 9.51e-10\n", "V_corr= -230.66007\n", "ibin= 396 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 94.9 131.0 0.042 -0.000 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0248 1.05e-09\n", "V_corr= -237.95646\n", "ibin= 397 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 116.6 125.7 -0.040 0.023 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0385 1.02e-09\n", "V_corr= -216.17306\n", "ibin= 398 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 118.7 112.8 0.003 0.072 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.205 8.68e-10\n", "V_corr= -214.07554\n", "ibin= 399 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 148.1 153.3 0.056 0.042 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.247 8.41e-10\n", "V_corr= -184.67628\n", "ibin= 400 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 139.7 138.4 0.068 -0.047 0.000 0.000 0.584 NaN\n", "Ages, Metallicities, Weights:\n", " 5.27e+03 0.0971 3.81e-10\n", "V_corr= -193.09402\n", "ibin= 401 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 150.8 156.4 0.017 0.083 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.00200 9.39e-10\n", "V_corr= -181.97128\n", "ibin= 402 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 102.6 157.2 -0.080 0.070 0.000 0.000 0.342 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.240 1.11e-09\n", "V_corr= -230.16841\n", "ibin= 403 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 132.8 151.0 0.019 -0.030 0.000 0.000 0.713 NaN\n", "Ages, Metallicities, Weights:\n", " 8.21e+03 -0.0737 4.60e-10\n", "V_corr= -200.04967\n", "ibin= 404 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 148.1 171.8 -0.047 0.048 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 2.35e+03 0.512 2.20e-10\n", "V_corr= -184.73231\n", "ibin= 405 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 109.1 149.9 -0.078 -0.011 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+03 0.534 1.63e-10\n", "V_corr= -223.69669\n", "ibin= 406 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 159.8 132.1 -0.075 0.001 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 8.04e+03 -0.0709 4.32e-10\n", "V_corr= -173.03058\n", "ibin= 407 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 130.4 114.0 0.001 -0.020 0.000 0.000 0.329 NaN\n", "Ages, Metallicities, Weights:\n", " 3.27e+03 0.0427 2.03e-10\n", "V_corr= -202.43946\n", "ibin= 408 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 131.8 126.5 -0.000 -0.021 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.213 7.82e-10\n", "V_corr= -201.03272\n", "ibin= 409 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 105.2 117.4 0.121 -0.026 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.218 7.68e-10\n", "V_corr= -227.62072\n", "ibin= 410 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 165.0 158.0 -0.048 0.042 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+03 0.689 1.59e-10\n", "V_corr= -167.78494\n", "ibin= 411 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 206.2 147.9 0.008 -0.020 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0266 7.86e-10\n", "V_corr= -126.61058\n", "ibin= 412 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 196.7 162.4 -0.046 0.083 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 4.57e+03 0.334 2.45e-10\n", "V_corr= -136.15531\n", "ibin= 413 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 414 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 415 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 416 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 241 65.4 235.8 0.005 0.020 0.000 0.000 2.064 NaN\n", "Ages, Metallicities, Weights:\n", " 3.59e+03 0.243 1.17e-10\n", "V_corr= -267.40413\n", "ibin= 417 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 13.9 147.5 0.009 0.006 0.000 0.000 1.095 NaN\n", "Ages, Metallicities, Weights:\n", " 883. 0.255 2.83e-11\n", "V_corr= -318.91483\n", "ibin= 418 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -9.0 98.2 -0.009 -0.016 0.000 0.000 0.894 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 -0.783 1.93e-10\n", "V_corr= -341.76381\n", "ibin= 419 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 14.4 84.8 0.018 0.003 0.000 0.000 1.140 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+04 -0.833 2.02e-10\n", "V_corr= -318.41816\n", "ibin= 420 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 15.1 53.4 0.006 0.005 0.000 0.000 0.887 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.807 2.18e-10\n", "V_corr= -317.74074\n", "ibin= 421 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 187 6.8 146.0 0.010 0.012 0.000 0.000 0.721 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+04 -0.837 1.99e-10\n", "V_corr= -325.97566\n", "ibin= 422 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 38.2 98.9 0.004 -0.004 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.581 2.46e-10\n", "V_corr= -294.63726\n", "ibin= 423 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 36.2 92.0 0.004 -0.000 0.000 0.000 0.780 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.822 2.50e-10\n", "V_corr= -296.59977\n", "ibin= 424 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 13.0 122.8 0.039 0.011 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 2.88e+03 -0.168 8.52e-11\n", "V_corr= -319.80357\n", "ibin= 425 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 52.0 100.8 0.047 0.003 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+03 -0.216 5.00e-11\n", "V_corr= -280.76297\n", "ibin= 426 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 63.8 103.0 -0.026 0.023 0.000 0.000 0.948 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.640 3.07e-10\n", "V_corr= -268.97534\n", "ibin= 427 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 39.5 275.9 0.046 -0.044 0.000 0.000 0.738 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.228 4.80e-10\n", "V_corr= -293.34670\n", "ibin= 428 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 50.0 54.7 0.000 0.002 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.990 2.58e-10\n", "V_corr= -282.82020\n", "ibin= 429 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 8.6 128.8 0.003 0.073 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.286 4.36e-10\n", "V_corr= -324.22290\n", "ibin= 430 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 183 47.4 186.8 0.017 0.060 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0723 5.30e-10\n", "V_corr= -285.39576\n", "ibin= 431 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 41.1 232.0 0.026 -0.030 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.267 5.08e-10\n", "V_corr= -291.73399\n", "ibin= 432 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 59.0 132.3 0.037 0.057 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.252 3.92e-10\n", "V_corr= -273.82426\n", "ibin= 433 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 52.9 48.0 -0.003 0.002 0.000 0.000 0.332 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -0.732 2.41e-10\n", "V_corr= -279.94019\n", "ibin= 434 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 23.6 68.1 0.016 0.014 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.562 4.09e-10\n", "V_corr= -309.21230\n", "ibin= 435 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 52.2 122.7 0.052 0.028 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.366 5.10e-10\n", "V_corr= -280.63768\n", "ibin= 436 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 67.0 123.7 0.029 -0.008 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+03 -0.113 7.00e-11\n", "V_corr= -265.84833\n", "ibin= 437 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 380 33.3 123.4 -0.016 0.058 0.000 0.000 0.603 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 0.379 1.28e-10\n", "V_corr= -299.55301\n", "ibin= 438 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 73.6 112.7 -0.021 0.006 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.222 6.51e-10\n", "V_corr= -259.19322\n", "ibin= 439 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 45.4 80.4 -0.002 0.023 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 4.94e+03 -0.347 2.01e-10\n", "V_corr= -287.39586\n", "ibin= 440 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 84.1 144.8 0.051 0.052 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.110 7.47e-10\n", "V_corr= -248.72436\n", "ibin= 441 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 39.4 116.4 0.061 0.050 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.418 6.01e-10\n", "V_corr= -293.44258\n", "ibin= 442 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 69.5 169.6 0.067 0.041 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 5.76e+03 0.266 3.88e-10\n", "V_corr= -263.29159\n", "ibin= 443 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 43.0 126.8 0.063 -0.002 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.00e+03 0.670 9.82e-11\n", "V_corr= -289.83282\n", "ibin= 444 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 45.7 82.5 0.006 0.014 0.000 0.000 0.418 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.345 7.29e-10\n", "V_corr= -287.10695\n", "ibin= 445 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 73.3 126.7 0.053 -0.035 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.192 7.74e-10\n", "V_corr= -259.48331\n", "ibin= 446 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 68.3 157.7 -0.047 0.038 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.103 9.08e-10\n", "V_corr= -264.49020\n", "ibin= 447 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 77.4 138.0 0.036 -0.027 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.298 7.05e-10\n", "V_corr= -255.39471\n", "ibin= 448 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 67.8 166.2 -0.001 0.047 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 2.84e+03 0.472 2.77e-10\n", "V_corr= -265.03023\n", "ibin= 449 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 53.2 139.7 0.084 0.061 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 5.93e+03 -0.0439 3.82e-10\n", "V_corr= -279.65667\n", "ibin= 450 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 74.6 122.0 -0.017 0.034 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0756 1.04e-09\n", "V_corr= -258.19248\n", "ibin= 451 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 80.1 113.6 -0.032 0.024 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.0417 9.74e-10\n", "V_corr= -252.71401\n", "ibin= 452 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 62.2 171.1 -0.014 0.145 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 8.46e+03 0.234 6.98e-10\n", "V_corr= -270.64267\n", "ibin= 453 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 64.2 148.1 0.018 0.021 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 -0.0759 7.70e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -268.58101\n", "ibin= 454 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 74.5 165.4 -0.042 0.014 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.155 1.05e-09\n", "V_corr= -258.34533\n", "ibin= 455 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 91.8 146.2 0.056 0.031 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 1.03e-09\n", "V_corr= -241.04677\n", "ibin= 456 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 70.8 125.0 -0.026 0.052 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 6.92e+03 -0.0235 4.92e-10\n", "V_corr= -261.98613\n", "ibin= 457 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 95.7 158.1 0.048 -0.074 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0860 1.15e-09\n", "V_corr= -237.06834\n", "ibin= 458 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 132.0 141.1 0.014 -0.004 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.269 9.18e-10\n", "V_corr= -200.84718\n", "ibin= 459 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 100.2 131.3 0.034 0.032 0.000 0.000 1.241 NaN\n", "Ages, Metallicities, Weights:\n", " 3.70e+03 0.00470 2.55e-10\n", "V_corr= -232.61752\n", "ibin= 460 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 103.6 171.9 -0.044 -0.022 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 1.05e-09\n", "V_corr= -229.19991\n", "ibin= 461 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 98.3 157.3 -0.029 -0.020 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.132 1.07e-09\n", "V_corr= -234.53253\n", "ibin= 462 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 105.5 130.0 0.021 0.022 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0665 1.20e-09\n", "V_corr= -227.30865\n", "ibin= 463 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 124.0 125.5 -0.030 0.007 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.103 1.07e-09\n", "V_corr= -208.80230\n", "ibin= 464 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 100.9 169.2 -0.045 0.058 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 0.164 1.13e-09\n", "V_corr= -231.92576\n", "ibin= 465 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 125.0 160.3 -0.018 -0.048 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.111 1.06e-09\n", "V_corr= -207.82932\n", "ibin= 466 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 113.1 166.4 -0.017 -0.004 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0506 1.13e-09\n", "V_corr= -219.70828\n", "ibin= 467 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 112.9 126.1 -0.051 0.028 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 9.91e-10\n", "V_corr= -219.92090\n", "ibin= 468 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 151.9 138.3 -0.053 -0.014 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0225 1.06e-09\n", "V_corr= -180.92824\n", "ibin= 469 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 111.6 152.8 0.044 0.064 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.282 1.23e-09\n", "V_corr= -221.22453\n", "ibin= 470 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 137.0 132.3 -0.050 0.009 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 2.94e+03 0.0529 2.06e-10\n", "V_corr= -195.78657\n", "ibin= 471 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 132.8 145.4 0.020 -0.010 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0520 9.77e-10\n", "V_corr= -200.01486\n", "ibin= 472 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 119.7 133.2 0.123 0.018 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+03 0.449 1.19e-10\n", "V_corr= -213.11578\n", "ibin= 473 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 131.8 154.0 0.027 -0.040 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 4.82e+03 -0.113 2.95e-10\n", "V_corr= -201.03165\n", "ibin= 474 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 132.0 111.4 0.004 0.025 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.246 7.88e-10\n", "V_corr= -200.80021\n", "ibin= 475 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 114.3 131.5 0.047 -0.033 0.000 0.000 0.359 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 -0.154 6.09e-10\n", "V_corr= -218.52520\n", "ibin= 476 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 145.7 118.8 -0.007 0.022 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.235 7.79e-10\n", "V_corr= -187.14304\n", "ibin= 477 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 125.3 153.0 -0.077 -0.044 0.000 0.000 0.287 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0925 8.76e-10\n", "V_corr= -207.51397\n", "ibin= 478 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 125.1 146.5 0.027 0.049 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 9.19e+03 0.211 5.72e-10\n", "V_corr= -207.73684\n", "ibin= 479 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 152.3 163.9 -0.012 -0.099 0.000 0.000 0.382 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.260 7.24e-10\n", "V_corr= -180.55360\n", "ibin= 480 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 180.6 119.8 0.007 -0.000 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 2.10e+03 -0.233 8.37e-11\n", "V_corr= -152.19144\n", "ibin= 481 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 184.9 192.5 -0.098 0.007 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 0.603 1.08e-09\n", "V_corr= -147.89417\n", "ibin= 482 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 483 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 484 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 485 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 56.5 249.3 0.010 -0.026 0.000 0.000 0.646 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+03 0.322 4.12e-11\n", "V_corr= -276.35829\n", "ibin= 486 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 8.0 202.4 0.068 0.024 0.000 0.000 1.026 NaN\n", "Ages, Metallicities, Weights:\n", " 658. 0.670 3.10e-11\n", "V_corr= -324.84422\n", "ibin= 487 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 72.8 54.1 -0.007 0.001 0.000 0.000 1.289 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.618 2.73e-10\n", "V_corr= -259.97640\n", "ibin= 488 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 298 32.8 83.3 0.018 0.020 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.495 3.06e-10\n", "V_corr= -300.01375\n", "ibin= 489 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 7.4 83.7 -0.011 0.001 0.000 0.000 1.097 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 -0.906 1.79e-10\n", "V_corr= -325.36615\n", "ibin= 490 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 13.1 49.2 -0.006 -0.011 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 3.40e+03 -0.563 7.51e-11\n", "V_corr= -319.72406\n", "ibin= 491 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 51.2 149.8 0.010 -0.037 0.000 0.000 0.624 NaN\n", "Ages, Metallicities, Weights:\n", " 8.46e+03 -0.703 1.52e-10\n", "V_corr= -281.65110\n", "ibin= 492 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 30.2 134.7 0.006 -0.006 0.000 0.000 0.909 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.568 2.75e-10\n", "V_corr= -302.64992\n", "ibin= 493 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 32.5 200.4 0.037 0.022 0.000 0.000 1.209 NaN\n", "Ages, Metallicities, Weights:\n", " 2.95e+03 0.165 1.09e-10\n", "V_corr= -300.26408\n", "ibin= 494 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 185 40.6 29.7 0.000 -0.001 0.000 0.000 0.983 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -0.934 2.21e-10\n", "V_corr= -292.20464\n", "ibin= 495 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -12.4 124.7 -0.021 -0.019 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.833 2.38e-10\n", "V_corr= -345.19635\n", "ibin= 496 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 28.6 113.0 -0.028 0.021 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+03 -0.0457 4.70e-11\n", "V_corr= -304.21635\n", "ibin= 497 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 22.5 83.4 -0.008 0.021 0.000 0.000 0.787 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.863 2.39e-10\n", "V_corr= -310.26560\n", "ibin= 498 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 14.1 186.8 -0.081 0.001 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.424 3.50e-10\n", "V_corr= -318.71777\n", "ibin= 499 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 62.4 130.1 -0.013 -0.009 0.000 0.000 0.781 NaN\n", "Ages, Metallicities, Weights:\n", " 5.08e+03 -0.0811 1.88e-10\n", "V_corr= -270.38291\n", "ibin= 500 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 128 95.6 243.3 0.047 -0.046 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 4.38e+03 0.195 1.98e-10\n", "V_corr= -237.22309\n", "ibin= 501 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 43.8 137.1 0.053 0.020 0.000 0.000 0.799 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 5.27e-10\n", "V_corr= -289.00387\n", "ibin= 502 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 51.6 90.3 -0.002 0.018 0.000 0.000 0.686 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.442 4.55e-10\n", "V_corr= -281.24234\n", "ibin= 503 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 25.6 75.8 -0.023 -0.009 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 4.56e+03 -0.606 1.33e-10\n", "V_corr= -307.19319\n", "ibin= 504 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 73.1 80.2 -0.023 0.010 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.763 3.28e-10\n", "V_corr= -259.75493\n", "ibin= 505 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 36.4 104.9 0.048 0.023 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 5.11e+03 -0.193 2.10e-10\n", "V_corr= -296.36174\n", "ibin= 506 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 33.8 102.0 -0.004 0.024 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.457 5.28e-10\n", "V_corr= -298.97880\n", "ibin= 507 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 50.4 102.3 0.019 -0.080 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.442 5.98e-10\n", "V_corr= -282.36030\n", "ibin= 508 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 58.4 141.6 0.006 0.027 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 0.456 1.54e-10\n", "V_corr= -274.43117\n", "ibin= 509 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 88.8 160.0 0.050 0.095 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.00e+03 0.592 8.09e-11\n", "V_corr= -244.02290\n", "ibin= 510 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 59.9 136.6 -0.019 0.008 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 3.02e+03 -0.0472 1.71e-10\n", "V_corr= -272.88033\n", "ibin= 511 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 23.7 152.4 0.027 -0.025 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 4.94e+03 -0.126 2.78e-10\n", "V_corr= -309.08474\n", "ibin= 512 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 44.7 120.7 0.042 0.051 0.000 0.000 0.308 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.363 7.07e-10\n", "V_corr= -288.08148\n", "ibin= 513 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 46.8 146.4 -0.066 0.087 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 3.41e+03 0.553 3.33e-10\n", "V_corr= -286.01336\n", "ibin= 514 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 58.4 127.3 -0.018 0.075 0.000 0.000 0.521 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+03 0.586 1.66e-10\n", "V_corr= -274.40718\n", "ibin= 515 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 39.1 154.0 -0.004 0.018 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0732 9.71e-10\n", "V_corr= -293.72142\n", "ibin= 516 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 64.1 98.2 0.017 0.021 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 2.37e+03 -0.170 1.49e-10\n", "V_corr= -268.73068\n", "ibin= 517 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 51.1 107.9 0.011 0.005 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 2.64e+03 -0.117 1.79e-10\n", "V_corr= -281.67111\n", "ibin= 518 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 69.2 141.4 -0.007 0.065 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 9.91e-10\n", "V_corr= -263.58303\n", "ibin= 519 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 190 70.1 161.0 0.007 0.079 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 4.49e+03 0.363 4.17e-10\n", "V_corr= -262.68702\n", "ibin= 520 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 57.2 167.1 -0.007 0.071 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0364 1.16e-09\n", "V_corr= -275.57733\n", "ibin= 521 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 55.7 136.6 0.014 0.042 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0558 1.13e-09\n", "V_corr= -277.07797\n", "ibin= 522 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 65.6 141.0 0.026 0.062 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 6.63e+03 -0.104 4.53e-10\n", "V_corr= -267.20200\n", "ibin= 523 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 109.2 145.4 0.039 0.052 0.000 0.000 0.362 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 1.05e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -223.65064\n", "ibin= 524 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 76.1 159.8 -0.034 0.043 0.000 0.000 0.273 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00314 1.19e-09\n", "V_corr= -256.67126\n", "ibin= 525 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 81.3 140.0 -0.001 -0.025 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+03 0.527 2.09e-10\n", "V_corr= -251.51253\n", "ibin= 526 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 92.9 125.7 -0.028 0.032 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 3.14e+03 0.154 2.58e-10\n", "V_corr= -239.95567\n", "ibin= 527 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 94.8 159.6 0.018 0.022 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 1.06e-09\n", "V_corr= -237.96318\n", "ibin= 528 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 116.2 132.2 -0.009 -0.013 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 1.03e-09\n", "V_corr= -216.65238\n", "ibin= 529 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 93.7 166.9 0.038 0.015 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0316 1.18e-09\n", "V_corr= -239.10510\n", "ibin= 530 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 93.1 151.8 -0.021 0.102 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0157 1.15e-09\n", "V_corr= -239.73730\n", "ibin= 531 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 117.8 118.3 0.022 0.049 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 1.05e-09\n", "V_corr= -215.04463\n", "ibin= 532 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 103.5 117.9 0.064 0.065 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 4.26e+03 0.121 3.37e-10\n", "V_corr= -229.30136\n", "ibin= 533 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 99.6 156.5 -0.013 0.057 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0425 1.10e-09\n", "V_corr= -233.17905\n", "ibin= 534 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 115.5 149.8 -0.006 -0.056 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 753. 0.564 8.54e-11\n", "V_corr= -217.32308\n", "ibin= 535 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 213 89.6 158.4 -0.053 0.042 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.76e+04 0.609 2.09e-09\n", "V_corr= -243.18595\n", "ibin= 536 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 123.5 151.0 -0.094 0.016 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0612 1.15e-09\n", "V_corr= -209.33948\n", "ibin= 537 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 126.1 167.1 0.014 -0.004 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 7.17e+03 0.0411 5.13e-10\n", "V_corr= -206.67982\n", "ibin= 538 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 111.5 138.4 -0.018 0.008 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 9.72e-10\n", "V_corr= -221.29577\n", "ibin= 539 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 106.1 119.0 0.007 -0.027 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.111 1.01e-09\n", "V_corr= -226.66212\n", "ibin= 540 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 101.9 118.7 0.045 0.051 0.000 0.000 0.676 NaN\n", "Ages, Metallicities, Weights:\n", " 5.85e+03 -0.0647 3.63e-10\n", "V_corr= -230.88612\n", "ibin= 541 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 124.0 117.1 0.004 0.051 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.222 8.53e-10\n", "V_corr= -208.78403\n", "ibin= 542 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 118.7 164.8 0.062 -0.046 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.617 1.26e-10\n", "V_corr= -214.13466\n", "ibin= 543 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 113.5 121.0 0.067 0.015 0.000 0.000 0.339 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+03 0.114 6.91e-11\n", "V_corr= -219.33589\n", "ibin= 544 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 127.9 161.9 0.019 0.030 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+03 0.476 1.72e-10\n", "V_corr= -204.92979\n", "ibin= 545 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 136.5 112.5 0.007 -0.013 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.161 8.49e-10\n", "V_corr= -196.28719\n", "ibin= 546 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 132.9 124.5 0.048 -0.003 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 2.51e+03 0.0401 1.50e-10\n", "V_corr= -199.86771\n", "ibin= 547 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 119.4 175.0 -0.023 -0.045 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 7.59e+03 0.0578 3.65e-10\n", "V_corr= -213.41569\n", "ibin= 548 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 137.6 205.9 0.011 0.036 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 6.77e+03 0.672 3.80e-10\n", "V_corr= -195.21952\n", "ibin= 549 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 171.8 151.3 0.043 -0.006 0.000 0.000 0.339 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.212 5.26e-10\n", "V_corr= -161.04115\n", "ibin= 550 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 184.1 121.5 -0.009 0.017 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 981. -0.0389 3.31e-11\n", "V_corr= -148.67422\n", "ibin= 551 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 552 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 553 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 554 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 59.3 164.3 0.015 0.045 0.000 0.000 0.821 NaN\n", "Ages, Metallicities, Weights:\n", " 3.96e+03 -0.321 9.15e-11\n", "V_corr= -273.49458\n", "ibin= 555 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 18.5 31.4 0.002 -0.001 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 773. -0.274 1.91e-11\n", "V_corr= -314.30986\n", "ibin= 556 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 149.9 246.2 0.040 -0.020 0.000 0.000 1.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 0.102 4.25e-10\n", "V_corr= -182.90978\n", "ibin= 557 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 329 72.7 167.0 0.011 -0.011 0.000 0.000 1.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+04 -0.960 1.76e-10\n", "V_corr= -260.11223\n", "ibin= 558 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 -16.1 53.8 0.003 -0.001 0.000 0.000 1.022 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -1.20 1.53e-10\n", "V_corr= -348.93284\n", "ibin= 559 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 26.7 124.4 0.054 -0.032 0.000 0.000 0.964 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.722 2.33e-10\n", "V_corr= -306.12605\n", "ibin= 560 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 47.8 145.4 0.021 0.033 0.000 0.000 0.887 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 -0.0414 6.80e-11\n", "V_corr= -285.05220\n", "ibin= 561 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -11.1 125.0 0.013 -0.029 0.000 0.000 0.894 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.146 4.49e-10\n", "V_corr= -343.93004\n", "ibin= 562 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 30.2 163.5 0.035 0.014 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+03 -0.221 5.91e-11\n", "V_corr= -302.64751\n", "ibin= 563 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 59.0 203.5 -0.009 0.046 0.000 0.000 1.107 NaN\n", "Ages, Metallicities, Weights:\n", " 7.36e+03 0.159 2.73e-10\n", "V_corr= -273.77005\n", "ibin= 564 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 91.7 94.5 -0.024 -0.021 0.000 0.000 0.777 NaN\n", "Ages, Metallicities, Weights:\n", " 2.12e+03 -0.633 5.14e-11\n", "V_corr= -241.06418\n", "ibin= 565 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 22.6 112.2 0.025 0.009 0.000 0.000 0.597 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.474 3.76e-10\n", "V_corr= -310.19092\n", "ibin= 566 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 22.9 178.3 0.064 0.046 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 6.02e+03 0.152 2.36e-10\n", "V_corr= -309.92571\n", "ibin= 567 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 38.0 226.1 0.126 0.053 0.000 0.000 0.689 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 0.385 7.15e-10\n", "V_corr= -294.82197\n", "ibin= 568 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 50.7 180.3 -0.001 0.013 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.218 4.89e-10\n", "V_corr= -282.15807\n", "ibin= 569 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 24.9 185.3 0.042 0.020 0.000 0.000 0.365 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 0.509 7.72e-11\n", "V_corr= -307.95317\n", "ibin= 570 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 154 56.2 109.3 0.011 0.023 0.000 0.000 0.702 NaN\n", "Ages, Metallicities, Weights:\n", " 2.41e+03 -0.222 9.07e-11\n", "V_corr= -276.56747\n", "ibin= 571 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 34.3 114.0 -0.027 0.020 0.000 0.000 0.921 NaN\n", "Ages, Metallicities, Weights:\n", " 5.62e+03 -0.180 2.13e-10\n", "V_corr= -298.49980\n", "ibin= 572 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 25.2 118.8 0.017 0.039 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+03 0.183 6.48e-11\n", "V_corr= -307.64722\n", "ibin= 573 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 42.5 182.3 -0.007 -0.005 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 7.69e+03 -0.0214 3.47e-10\n", "V_corr= -290.30492\n", "ibin= 574 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 11.2 169.6 0.047 -0.017 0.000 0.000 0.628 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+03 0.529 8.03e-11\n", "V_corr= -321.65335\n", "ibin= 575 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 363 42.1 230.0 -0.030 0.093 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 6.59e+03 0.180 3.74e-10\n", "V_corr= -290.70235\n", "ibin= 576 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 44.1 93.9 -0.015 0.036 0.000 0.000 0.504 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 6.78e-10\n", "V_corr= -288.68652\n", "ibin= 577 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 55.3 130.3 0.036 0.023 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 5.33e+03 -0.106 2.79e-10\n", "V_corr= -277.50450\n", "ibin= 578 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 49.1 142.2 0.013 0.044 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.239 7.47e-10\n", "V_corr= -283.72793\n", "ibin= 579 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 32.5 165.2 -0.041 0.032 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0891 8.67e-10\n", "V_corr= -300.29248\n", "ibin= 580 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 29.4 126.4 0.078 0.014 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.268 7.88e-10\n", "V_corr= -303.42771\n", "ibin= 581 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 44.8 134.6 -0.005 0.051 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 2.09e+03 0.177 1.51e-10\n", "V_corr= -287.98166\n", "ibin= 582 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 55.6 130.9 0.028 -0.002 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 6.02e+03 -0.0456 3.74e-10\n", "V_corr= -277.21263\n", "ibin= 583 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 44.8 118.9 -0.013 0.027 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 6.36e+03 -0.0140 4.11e-10\n", "V_corr= -287.97262\n", "ibin= 584 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 52.3 160.0 0.007 0.042 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0483 1.01e-09\n", "V_corr= -280.54627\n", "ibin= 585 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 62.4 152.3 -0.060 0.047 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00986 1.08e-09\n", "V_corr= -270.36699\n", "ibin= 586 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 52.1 170.0 -0.036 0.034 0.000 0.000 0.327 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0767 1.07e-09\n", "V_corr= -280.72189\n", "ibin= 587 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 68.7 146.1 -0.021 -0.025 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 2.18e+03 0.475 2.55e-10\n", "V_corr= -264.07319\n", "ibin= 588 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 72.4 133.6 0.001 0.046 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.127 1.08e-09\n", "V_corr= -260.42637\n", "ibin= 589 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 46.6 134.0 -0.008 0.051 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.122 9.56e-10\n", "V_corr= -286.19306\n", "ibin= 590 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 51.3 148.3 0.020 0.085 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0115 1.19e-09\n", "V_corr= -281.54990\n", "ibin= 591 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 94.7 167.5 0.071 -0.052 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.214 1.21e-09\n", "V_corr= -238.09343\n", "ibin= 592 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 74.7 189.6 0.017 0.049 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 0.137 1.28e-09\n", "V_corr= -258.13947\n", "ibin= 593 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 103.4 154.2 -0.011 0.024 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.180 1.05e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -229.44119\n", "ibin= 594 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 85.0 149.5 -0.074 0.047 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 8.59e+03 0.189 7.57e-10\n", "V_corr= -247.85479\n", "ibin= 595 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 97.2 152.9 -0.045 -0.007 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 6.43e+03 0.0237 5.23e-10\n", "V_corr= -235.64447\n", "ibin= 596 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 105.2 155.3 -0.024 0.016 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.168 1.10e-09\n", "V_corr= -227.63902\n", "ibin= 597 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 98.7 120.5 0.021 0.038 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 0.174 2.41e-10\n", "V_corr= -234.09895\n", "ibin= 598 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 91.8 115.4 -0.018 0.022 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 3.40e+03 -0.300 2.30e-10\n", "V_corr= -240.96448\n", "ibin= 599 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 115.1 126.9 -0.026 -0.022 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 5.27e+03 -0.155 3.95e-10\n", "V_corr= -217.72015\n", "ibin= 600 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 130.9 147.1 0.019 -0.012 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 6.96e+03 -0.0189 5.67e-10\n", "V_corr= -201.88477\n", "ibin= 601 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 83.1 156.3 -0.001 0.051 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0147 1.21e-09\n", "V_corr= -249.75208\n", "ibin= 602 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 113.7 116.7 0.026 0.039 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.261 9.85e-10\n", "V_corr= -219.07027\n", "ibin= 603 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 111.7 139.4 0.067 0.060 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0767 1.10e-09\n", "V_corr= -221.12822\n", "ibin= 604 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 111.9 135.0 -0.005 0.001 0.000 0.000 0.316 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0863 1.10e-09\n", "V_corr= -220.94625\n", "ibin= 605 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 101.0 153.6 0.047 -0.001 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0270 1.17e-09\n", "V_corr= -231.82337\n", "ibin= 606 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 134.6 130.4 -0.039 0.027 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.0209 6.85e-10\n", "V_corr= -198.22835\n", "ibin= 607 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 104.1 147.7 -0.038 0.033 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0865 1.04e-09\n", "V_corr= -228.74008\n", "ibin= 608 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 109.3 171.8 0.038 0.015 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.0696 9.47e-10\n", "V_corr= -223.51847\n", "ibin= 609 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 103.1 141.0 -0.035 0.023 0.000 0.000 0.310 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0678 1.01e-09\n", "V_corr= -229.70814\n", "ibin= 610 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 94.3 140.0 0.077 0.020 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 902. 0.668 1.01e-10\n", "V_corr= -238.48708\n", "ibin= 611 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 128.9 163.8 0.033 0.011 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0852 1.10e-09\n", "V_corr= -203.89154\n", "ibin= 612 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 141.0 140.6 0.002 -0.025 0.000 0.000 0.806 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 0.0723 1.80e-10\n", "V_corr= -191.81317\n", "ibin= 613 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 146.3 151.0 -0.011 -0.052 0.000 0.000 0.365 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.215 9.70e-10\n", "V_corr= -186.54686\n", "ibin= 614 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 121.3 107.6 0.056 -0.028 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+03 0.0203 6.46e-11\n", "V_corr= -211.49771\n", "ibin= 615 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 115.8 145.4 0.029 -0.056 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.157 6.37e-10\n", "V_corr= -217.03224\n", "ibin= 616 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 160.0 145.0 -0.021 0.007 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 7.52e+03 -0.269 2.76e-10\n", "V_corr= -172.84307\n", "ibin= 617 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 110.0 210.0 -0.004 -0.022 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 0.267 8.32e-10\n", "V_corr= -222.76091\n", "ibin= 618 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 181.5 142.4 -0.022 -0.072 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 7.51e+03 0.0193 3.57e-10\n", "V_corr= -151.32134\n", "ibin= 619 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 187.0 140.8 0.037 0.009 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.337 5.09e-10\n", "V_corr= -145.75935\n", "ibin= 620 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 621 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 622 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 623 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 37.1 202.8 0.034 -0.054 0.000 0.000 0.886 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+03 0.187 4.19e-11\n", "V_corr= -295.67759\n", "ibin= 624 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 37.9 84.5 0.013 -0.001 0.000 0.000 1.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -1.10 1.47e-10\n", "V_corr= -294.86986\n", "ibin= 625 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 43.1 181.1 0.050 -0.003 0.000 0.000 1.003 NaN\n", "Ages, Metallicities, Weights:\n", " 3.42e+03 0.182 1.18e-10\n", "V_corr= -289.69157\n", "ibin= 626 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 103.6 217.9 -0.017 -0.043 0.000 0.000 1.231 NaN\n", "Ages, Metallicities, Weights:\n", " 3.29e+03 0.116 1.14e-10\n", "V_corr= -229.25466\n", "ibin= 627 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -3.3 115.2 -0.018 0.023 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.604 2.94e-10\n", "V_corr= -336.06311\n", "ibin= 628 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 43.7 31.8 0.000 -0.000 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 8.51e+03 -0.961 1.48e-10\n", "V_corr= -289.09000\n", "ibin= 629 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 176 -3.3 122.9 -0.033 0.043 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+03 0.537 5.13e-11\n", "V_corr= -336.13464\n", "ibin= 630 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 42.3 122.8 0.013 0.037 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 -0.411 3.23e-10\n", "V_corr= -290.49345\n", "ibin= 631 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -7.4 144.8 0.048 -0.001 0.000 0.000 1.073 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+03 0.156 5.46e-11\n", "V_corr= -340.23757\n", "ibin= 632 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 45.5 165.6 0.022 0.049 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 2.39e+03 0.607 1.37e-10\n", "V_corr= -287.32741\n", "ibin= 633 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 24.0 173.1 0.095 0.008 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+03 0.227 4.86e-11\n", "V_corr= -308.81991\n", "ibin= 634 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 17.0 98.3 0.021 -0.007 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 -0.933 1.77e-10\n", "V_corr= -315.76591\n", "ibin= 635 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 2.3 77.4 -0.008 0.012 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.778 2.88e-10\n", "V_corr= -330.54855\n", "ibin= 636 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 142 3.7 228.8 0.040 0.049 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 0.324 5.96e-10\n", "V_corr= -329.07445\n", "ibin= 637 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 49.8 109.5 0.007 -0.001 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.468 3.60e-10\n", "V_corr= -283.01226\n", "ibin= 638 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 464 60.7 199.0 0.040 0.025 0.000 0.000 1.413 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 0.614 1.43e-10\n", "V_corr= -272.09179\n", "ibin= 639 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 258 36.7 246.1 -0.032 0.139 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 0.241 7.05e-10\n", "V_corr= -296.08617\n", "ibin= 640 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 106 53.1 86.3 0.013 -0.001 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 8.53e+03 -0.772 2.05e-10\n", "V_corr= -279.69344\n", "ibin= 641 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 39.2 106.5 0.015 0.032 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.541 5.10e-10\n", "V_corr= -293.58599\n", "ibin= 642 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 62.5 139.4 0.032 0.050 0.000 0.000 1.054 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 6.18e-10\n", "V_corr= -270.30668\n", "ibin= 643 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 12.1 141.1 0.058 0.050 0.000 0.000 0.900 NaN\n", "Ages, Metallicities, Weights:\n", " 7.74e+03 0.0484 3.90e-10\n", "V_corr= -320.75361\n", "ibin= 644 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 57.6 143.6 -0.033 -0.018 0.000 0.000 0.615 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.282 7.00e-10\n", "V_corr= -275.19426\n", "ibin= 645 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 38.9 105.7 -0.039 0.008 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.466 6.06e-10\n", "V_corr= -293.88833\n", "ibin= 646 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 32.9 141.4 0.004 0.058 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 3.07e+03 0.462 2.52e-10\n", "V_corr= -299.88178\n", "ibin= 647 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 45.0 138.4 0.062 0.033 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 4.20e+03 -0.0672 2.41e-10\n", "V_corr= -287.81636\n", "ibin= 648 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 40.3 173.7 -0.030 0.085 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 3.48e+03 0.359 2.71e-10\n", "V_corr= -292.54823\n", "ibin= 649 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 26.7 91.3 0.001 -0.008 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+03 0.152 8.02e-11\n", "V_corr= -306.08291\n", "ibin= 650 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 47.5 148.7 0.010 0.039 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 2.65e+03 0.464 2.56e-10\n", "V_corr= -285.31526\n", "ibin= 651 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 53.7 121.0 -0.031 0.040 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 2.25e+03 0.0639 1.65e-10\n", "V_corr= -279.15299\n", "ibin= 652 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 68.6 96.4 0.042 0.034 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 2.70e+03 0.108 2.09e-10\n", "V_corr= -264.21321\n", "ibin= 653 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 88.6 125.1 0.000 -0.009 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.266 9.40e-10\n", "V_corr= -244.25299\n", "ibin= 654 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 61.9 163.1 -0.024 0.048 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 0.126 1.05e-09\n", "V_corr= -270.87029\n", "ibin= 655 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 73.0 144.8 -0.089 -0.003 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.121 1.12e-09\n", "V_corr= -259.76325\n", "ibin= 656 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 179 79.1 166.8 -0.085 0.050 0.000 0.000 0.289 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 0.472 2.55e-10\n", "V_corr= -253.73445\n", "ibin= 657 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 34.7 133.4 0.072 0.041 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 2.36e+03 0.461 2.82e-10\n", "V_corr= -298.08797\n", "ibin= 658 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 49.6 138.6 0.045 -0.003 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 8.27e+03 0.0128 6.78e-10\n", "V_corr= -283.24717\n", "ibin= 659 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 108.7 156.8 -0.058 0.028 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 2.15e+03 0.562 2.91e-10\n", "V_corr= -224.07041\n", "ibin= 660 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 71.5 130.3 0.013 0.055 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.101 1.14e-09\n", "V_corr= -261.29954\n", "ibin= 661 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 91.8 157.5 -0.065 -0.006 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 7.05e+03 -0.123 4.99e-10\n", "V_corr= -241.02218\n", "ibin= 662 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 86.7 130.4 0.000 0.010 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.226 1.10e-09\n", "V_corr= -246.08843\n", "ibin= 663 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 99.8 124.2 -0.016 -0.012 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.180 1.17e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -233.03533\n", "ibin= 664 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 84.4 128.7 0.031 -0.019 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 2.38e+03 0.0489 2.20e-10\n", "V_corr= -248.41701\n", "ibin= 665 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 98.7 142.3 0.004 -0.013 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.308 1.07e-09\n", "V_corr= -234.09618\n", "ibin= 666 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 76.5 156.7 0.050 0.009 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 8.70e+03 0.0126 7.05e-10\n", "V_corr= -256.33230\n", "ibin= 667 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 100.2 151.3 -0.005 0.010 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.111 1.23e-09\n", "V_corr= -232.64178\n", "ibin= 668 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 109.2 152.2 -0.065 0.040 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0803 1.21e-09\n", "V_corr= -223.61059\n", "ibin= 669 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 102.3 132.1 -0.030 0.002 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.202 1.13e-09\n", "V_corr= -230.47955\n", "ibin= 670 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 119.8 143.2 0.017 -0.060 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 2.37e+03 0.0876 2.26e-10\n", "V_corr= -213.04646\n", "ibin= 671 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 102.2 131.8 -0.021 0.029 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 3.73e+03 -0.115 2.82e-10\n", "V_corr= -230.65449\n", "ibin= 672 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 110.8 144.8 -0.016 -0.007 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0519 1.28e-09\n", "V_corr= -221.96948\n", "ibin= 673 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 102.1 132.2 -0.045 0.030 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0412 1.15e-09\n", "V_corr= -230.68855\n", "ibin= 674 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 94.9 140.7 0.029 0.012 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 -0.111 9.47e-10\n", "V_corr= -237.86152\n", "ibin= 675 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 121.1 165.3 0.072 -0.055 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.210 9.19e-10\n", "V_corr= -211.75418\n", "ibin= 676 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 131.4 154.2 -0.091 -0.033 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00955 1.19e-09\n", "V_corr= -201.41065\n", "ibin= 677 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 132.6 148.4 -0.020 0.030 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.118 1.22e-09\n", "V_corr= -200.19590\n", "ibin= 678 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 120.9 177.8 0.019 -0.060 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.0240 1.02e-09\n", "V_corr= -211.88138\n", "ibin= 679 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 124.0 153.6 0.007 0.003 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.113 9.61e-10\n", "V_corr= -208.81517\n", "ibin= 680 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 92.5 128.7 0.068 0.020 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 0.689 1.76e-10\n", "V_corr= -240.32701\n", "ibin= 681 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 111.5 143.4 0.113 0.013 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 3.39e+03 0.287 2.76e-10\n", "V_corr= -221.27388\n", "ibin= 682 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 115.9 145.0 0.037 -0.041 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.0710 1.98e-10\n", "V_corr= -216.88246\n", "ibin= 683 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 105.3 137.3 0.035 -0.002 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 2.87e+03 0.135 2.00e-10\n", "V_corr= -227.53037\n", "ibin= 684 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 116.7 168.8 -0.011 -0.043 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 4.61e+03 0.153 3.17e-10\n", "V_corr= -216.09631\n", "ibin= 685 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 139.7 147.1 0.010 0.013 0.000 0.000 0.786 NaN\n", "Ages, Metallicities, Weights:\n", " 3.03e+03 0.0343 1.64e-10\n", "V_corr= -193.08935\n", "ibin= 686 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 165.1 191.7 -0.013 -0.075 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.201 7.09e-10\n", "V_corr= -167.72532\n", "ibin= 687 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 158.6 102.0 -0.016 0.018 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 940. 0.0701 4.38e-11\n", "V_corr= -174.19188\n", "ibin= 688 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 169.7 211.4 -0.019 0.036 0.000 0.000 0.707 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0438 6.15e-10\n", "V_corr= -163.14881\n", "ibin= 689 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 690 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 691 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 692 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 207 67.9 31.3 -0.001 -0.001 0.000 0.000 0.914 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+03 -1.12 2.10e-11\n", "V_corr= -264.89220\n", "ibin= 693 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -4.5 194.9 -0.016 -0.004 0.000 0.000 0.860 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.360 3.61e-10\n", "V_corr= -337.26097\n", "ibin= 694 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 30.5 177.0 0.069 0.011 0.000 0.000 0.978 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0307 4.91e-10\n", "V_corr= -302.27416\n", "ibin= 695 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 38.0 98.4 0.024 0.027 0.000 0.000 1.658 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.494 3.31e-10\n", "V_corr= -294.77675\n", "ibin= 696 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 5.4 129.8 -0.036 0.043 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.40e+03 0.129 4.64e-11\n", "V_corr= -327.44063\n", "ibin= 697 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 241 6.0 47.4 0.004 -0.002 0.000 0.000 0.827 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+04 -0.929 1.93e-10\n", "V_corr= -326.83710\n", "ibin= 698 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -6.3 47.9 0.003 0.000 0.000 0.000 1.165 NaN\n", "Ages, Metallicities, Weights:\n", " 4.80e+03 -0.524 1.12e-10\n", "V_corr= -339.07513\n", "ibin= 699 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 38.0 137.1 -0.008 -0.002 0.000 0.000 0.989 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 0.0525 4.82e-10\n", "V_corr= -294.77222\n", "ibin= 700 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 32.4 165.0 0.049 -0.031 0.000 0.000 0.872 NaN\n", "Ages, Metallicities, Weights:\n", " 4.87e+03 -0.211 1.47e-10\n", "V_corr= -300.36597\n", "ibin= 701 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 215 14.0 138.1 -0.006 0.044 0.000 0.000 0.895 NaN\n", "Ages, Metallicities, Weights:\n", " 870. 0.640 4.50e-11\n", "V_corr= -318.85561\n", "ibin= 702 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 16.4 145.6 0.006 0.026 0.000 0.000 1.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.361 3.91e-10\n", "V_corr= -316.44458\n", "ibin= 703 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 21.5 169.3 0.040 0.056 0.000 0.000 0.934 NaN\n", "Ages, Metallicities, Weights:\n", " 5.44e+03 0.152 2.01e-10\n", "V_corr= -311.30334\n", "ibin= 704 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 203 60.9 198.7 0.060 0.041 0.000 0.000 0.983 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 5.12e-10\n", "V_corr= -271.94288\n", "ibin= 705 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -2.0 99.5 0.045 0.021 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.765 2.68e-10\n", "V_corr= -334.81310\n", "ibin= 706 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 8.0 215.1 -0.036 0.054 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.415 8.57e-10\n", "V_corr= -324.82348\n", "ibin= 707 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 252 23.5 130.8 0.003 0.061 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+03 0.0102 6.04e-11\n", "V_corr= -309.33929\n", "ibin= 708 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 57.8 102.3 0.005 0.029 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.410 5.05e-10\n", "V_corr= -275.03801\n", "ibin= 709 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 67.8 132.9 0.034 0.021 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.229 4.06e-10\n", "V_corr= -265.00417\n", "ibin= 710 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 114 36.0 147.4 0.080 -0.044 0.000 0.000 0.291 NaN\n", "Ages, Metallicities, Weights:\n", " 7.78e+03 -0.111 3.42e-10\n", "V_corr= -296.81644\n", "ibin= 711 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 49.2 90.5 -0.018 -0.000 0.000 0.000 0.842 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.334 6.33e-10\n", "V_corr= -283.59956\n", "ibin= 712 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 -0.5 140.2 0.102 0.021 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.511 4.67e-10\n", "V_corr= -333.28692\n", "ibin= 713 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 34.4 116.3 0.022 -0.030 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.363 6.69e-10\n", "V_corr= -298.35920\n", "ibin= 714 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 120 33.1 69.8 0.017 0.012 0.000 0.000 0.366 NaN\n", "Ages, Metallicities, Weights:\n", " 2.14e+03 -0.310 1.04e-10\n", "V_corr= -299.69231\n", "ibin= 715 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 186 8.0 177.0 -0.031 0.066 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 0.432 1.16e-09\n", "V_corr= -324.76640\n", "ibin= 716 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 46.6 146.9 0.009 0.064 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.220 8.36e-10\n", "V_corr= -286.23209\n", "ibin= 717 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 53.7 112.1 0.013 0.029 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 5.68e+03 -0.170 3.16e-10\n", "V_corr= -279.09537\n", "ibin= 718 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 40.3 137.2 0.053 0.032 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 2.70e+03 0.0443 1.83e-10\n", "V_corr= -292.50993\n", "ibin= 719 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 40.8 151.9 -0.065 0.020 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.275 8.73e-10\n", "V_corr= -291.98310\n", "ibin= 720 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 54.8 131.7 -0.010 0.071 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.290 8.60e-10\n", "V_corr= -278.02003\n", "ibin= 721 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 50.4 94.2 0.034 0.028 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.468 7.04e-10\n", "V_corr= -282.36705\n", "ibin= 722 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 70.8 152.4 -0.011 -0.018 0.000 0.000 0.298 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.0555 9.47e-10\n", "V_corr= -262.05329\n", "ibin= 723 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 41.0 158.0 0.013 0.041 0.000 0.000 0.290 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+03 0.583 1.87e-10\n", "V_corr= -291.82066\n", "ibin= 724 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 55.8 125.4 -0.039 0.081 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.123 1.11e-09\n", "V_corr= -276.96772\n", "ibin= 725 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 249 62.7 154.1 -0.076 -0.003 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+03 0.607 1.97e-10\n", "V_corr= -270.10368\n", "ibin= 726 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 77.6 158.8 0.037 0.055 0.000 0.000 0.580 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0115 1.30e-09\n", "V_corr= -255.22711\n", "ibin= 727 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 94.5 167.9 -0.014 0.020 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0367 1.25e-09\n", "V_corr= -238.31343\n", "ibin= 728 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 96.4 176.1 -0.036 -0.002 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0817 1.19e-09\n", "V_corr= -236.39826\n", "ibin= 729 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 64.0 172.9 -0.079 -0.007 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.240 1.57e-09\n", "V_corr= -268.84316\n", "ibin= 730 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 97.6 152.4 0.043 0.042 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.244 1.11e-09\n", "V_corr= -235.24575\n", "ibin= 731 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 100.7 148.2 -0.028 -0.014 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.0161 9.10e-10\n", "V_corr= -232.12947\n", "ibin= 732 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 79.2 157.9 -0.043 0.067 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0222 1.30e-09\n", "V_corr= -253.59166\n", "ibin= 733 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 103.1 134.2 -0.019 0.008 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.115 1.29e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -229.68328\n", "ibin= 734 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 90.0 152.3 0.028 0.004 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.164 1.26e-09\n", "V_corr= -242.76718\n", "ibin= 735 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 100.8 154.2 -0.065 0.024 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 0.0155 1.06e-09\n", "V_corr= -232.05222\n", "ibin= 736 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 122.2 162.5 -0.056 0.072 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0278 1.29e-09\n", "V_corr= -210.57049\n", "ibin= 737 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 94.2 129.5 0.057 -0.054 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 4.74e+03 -0.197 3.88e-10\n", "V_corr= -238.60977\n", "ibin= 738 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 102.4 120.1 0.050 0.013 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.207 1.15e-09\n", "V_corr= -230.38457\n", "ibin= 739 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 111.4 148.5 -0.070 -0.012 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.115 9.58e-10\n", "V_corr= -221.44138\n", "ibin= 740 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 105.8 130.5 0.016 0.023 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 7.06e+03 -0.0360 5.43e-10\n", "V_corr= -227.04983\n", "ibin= 741 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 126.2 138.2 -0.028 -0.049 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 4.99e+03 -0.127 3.92e-10\n", "V_corr= -206.64281\n", "ibin= 742 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 103.2 135.5 -0.027 0.042 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.194 1.07e-09\n", "V_corr= -229.58118\n", "ibin= 743 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 107.0 141.7 0.001 0.077 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0108 1.18e-09\n", "V_corr= -225.79866\n", "ibin= 744 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 118.7 148.4 0.007 -0.027 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.10e-09\n", "V_corr= -214.10547\n", "ibin= 745 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 121.2 137.7 0.034 0.024 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 9.43e+03 0.0425 6.89e-10\n", "V_corr= -211.57550\n", "ibin= 746 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 89.2 113.1 0.092 0.020 0.000 0.000 0.326 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 9.90e-10\n", "V_corr= -243.59734\n", "ibin= 747 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 134.2 184.9 0.038 0.015 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.170 1.26e-09\n", "V_corr= -198.59134\n", "ibin= 748 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 110.5 151.9 -0.035 0.078 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0257 1.03e-09\n", "V_corr= -222.27940\n", "ibin= 749 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 100.8 153.3 0.012 0.039 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.128 1.14e-09\n", "V_corr= -231.99123\n", "ibin= 750 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 141.6 149.3 0.106 0.010 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.177 8.93e-10\n", "V_corr= -191.25071\n", "ibin= 751 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 124.0 150.2 -0.066 0.004 0.000 0.000 0.839 NaN\n", "Ages, Metallicities, Weights:\n", " 6.19e+03 0.0299 3.92e-10\n", "V_corr= -208.81923\n", "ibin= 752 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 117.3 165.8 -0.003 -0.040 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 0.427 1.70e-10\n", "V_corr= -215.50576\n", "ibin= 753 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 106.1 112.1 0.050 0.005 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 3.55e+03 0.00178 2.01e-10\n", "V_corr= -226.69346\n", "ibin= 754 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 121.0 134.0 -0.018 -0.027 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -0.441 3.92e-10\n", "V_corr= -211.79599\n", "ibin= 755 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 120.9 166.2 -0.016 0.001 0.000 0.000 0.696 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0899 7.68e-10\n", "V_corr= -211.90191\n", "ibin= 756 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 166.5 135.4 -0.125 -0.053 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 5.03e+03 0.0655 2.76e-10\n", "V_corr= -166.33963\n", "ibin= 757 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 147.3 155.4 -0.015 -0.027 0.000 0.000 0.808 NaN\n", "Ages, Metallicities, Weights:\n", " 3.76e+03 0.111 2.02e-10\n", "V_corr= -185.53827\n", "ibin= 758 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 759 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 760 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 761 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 206 9.6 103.2 0.017 -0.012 0.000 0.000 0.990 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+03 -0.138 2.72e-11\n", "V_corr= -323.21521\n", "ibin= 762 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 14.9 93.8 -0.001 0.005 0.000 0.000 0.883 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -1.20 1.52e-10\n", "V_corr= -317.91847\n", "ibin= 763 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 36.9 207.3 0.017 0.078 0.000 0.000 1.896 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.354 6.10e-10\n", "V_corr= -295.94940\n", "ibin= 764 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -1.1 138.0 0.012 0.033 0.000 0.000 0.934 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.418 3.66e-10\n", "V_corr= -333.90252\n", "ibin= 765 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 26.8 144.4 -0.062 -0.017 0.000 0.000 0.802 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.569 3.22e-10\n", "V_corr= -306.02709\n", "ibin= 766 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 63.5 167.0 0.051 -0.016 0.000 0.000 0.884 NaN\n", "Ages, Metallicities, Weights:\n", " 2.94e+03 0.0450 1.04e-10\n", "V_corr= -269.27879\n", "ibin= 767 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 62.3 61.3 -0.003 0.002 0.000 0.000 0.695 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.709 2.59e-10\n", "V_corr= -270.53097\n", "ibin= 768 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 33.0 115.1 0.014 0.006 0.000 0.000 0.941 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -1.19 1.58e-10\n", "V_corr= -299.76098\n", "ibin= 769 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 397 40.0 168.1 0.022 0.027 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+03 -0.482 4.70e-11\n", "V_corr= -292.85136\n", "ibin= 770 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 10.9 201.9 0.004 0.012 0.000 0.000 0.762 NaN\n", "Ages, Metallicities, Weights:\n", " 974. 0.357 3.98e-11\n", "V_corr= -321.86814\n", "ibin= 771 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 58.1 226.9 0.023 -0.035 0.000 0.000 0.912 NaN\n", "Ages, Metallicities, Weights:\n", " 2.98e+03 0.389 1.44e-10\n", "V_corr= -274.71105\n", "ibin= 772 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 42.3 207.4 0.016 0.022 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0317 5.70e-10\n", "V_corr= -290.48163\n", "ibin= 773 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 42.5 29.0 0.000 -0.000 0.000 0.000 0.800 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.477 5.10e-10\n", "V_corr= -290.34136\n", "ibin= 774 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 8.5 121.7 0.015 -0.015 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+03 0.151 7.04e-11\n", "V_corr= -324.33964\n", "ibin= 775 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 38.1 163.2 0.066 0.026 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.205 5.69e-10\n", "V_corr= -294.66850\n", "ibin= 776 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 16.9 133.9 0.072 0.018 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 5.57e-10\n", "V_corr= -315.93278\n", "ibin= 777 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 13.1 154.8 0.019 0.047 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.690 3.41e-10\n", "V_corr= -319.74621\n", "ibin= 778 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 23.7 137.8 -0.008 0.031 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.402 4.62e-10\n", "V_corr= -309.08051\n", "ibin= 779 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 275 15.9 66.7 -0.003 0.012 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.852 3.44e-10\n", "V_corr= -316.94492\n", "ibin= 780 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 105 29.9 143.7 0.008 0.046 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.304 6.52e-10\n", "V_corr= -302.89821\n", "ibin= 781 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 20.5 83.0 -0.005 0.015 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+03 -0.0146 6.72e-11\n", "V_corr= -312.35490\n", "ibin= 782 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 38.4 109.1 -0.007 0.073 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 4.16e+03 -0.0559 2.26e-10\n", "V_corr= -294.36188\n", "ibin= 783 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 21.4 132.1 0.062 0.006 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.236 8.13e-10\n", "V_corr= -311.38853\n", "ibin= 784 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 51.9 154.4 0.010 0.134 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 9.09e+03 0.228 6.14e-10\n", "V_corr= -280.89170\n", "ibin= 785 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 69.0 151.0 -0.024 0.047 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 8.83e-10\n", "V_corr= -263.81347\n", "ibin= 786 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 52.3 104.9 -0.035 0.031 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 4.81e+03 -0.407 2.43e-10\n", "V_corr= -280.52818\n", "ibin= 787 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 55.3 180.5 0.042 0.068 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 0.0114 1.00e-09\n", "V_corr= -277.54019\n", "ibin= 788 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 20.7 151.3 0.033 0.038 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0827 9.97e-10\n", "V_corr= -312.11966\n", "ibin= 789 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 54.6 170.5 0.018 0.041 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 0.0371 7.54e-10\n", "V_corr= -278.19994\n", "ibin= 790 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 70.2 132.3 -0.046 0.056 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.108 1.08e-09\n", "V_corr= -262.64525\n", "ibin= 791 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 59.4 161.3 0.025 0.022 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00464 1.23e-09\n", "V_corr= -273.38235\n", "ibin= 792 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 69.3 140.5 -0.051 0.049 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.231 1.07e-09\n", "V_corr= -263.49396\n", "ibin= 793 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 75.7 177.5 0.004 0.022 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 2.32e+03 0.423 2.91e-10\n", "V_corr= -257.15618\n", "ibin= 794 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 62.3 153.0 -0.016 0.036 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0333 1.29e-09\n", "V_corr= -270.47425\n", "ibin= 795 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 62.0 160.6 0.010 0.091 0.000 0.000 0.311 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 0.198 1.43e-09\n", "V_corr= -270.76018\n", "ibin= 796 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 95.3 165.3 -0.061 -0.007 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0923 1.24e-09\n", "V_corr= -237.48061\n", "ibin= 797 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 98.1 174.8 -0.082 -0.017 0.000 0.000 0.287 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0428 1.34e-09\n", "V_corr= -234.71362\n", "ibin= 798 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 73.3 125.9 0.008 0.018 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.197 1.24e-09\n", "V_corr= -259.49280\n", "ibin= 799 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 200 96.7 157.9 0.070 -0.015 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0237 1.48e-09\n", "V_corr= -236.14184\n", "ibin= 800 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 86.8 123.8 0.000 -0.008 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.322 1.18e-09\n", "V_corr= -246.02689\n", "ibin= 801 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 87.6 166.9 -0.013 0.056 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0444 1.39e-09\n", "V_corr= -245.25859\n", "ibin= 802 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 72.9 137.8 0.018 0.029 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.117 1.33e-09\n", "V_corr= -259.89435\n", "ibin= 803 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 82.1 156.7 0.044 0.009 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.0857 1.28e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -250.75200\n", "ibin= 804 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 89.8 121.9 0.013 0.023 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.0762 1.27e-09\n", "V_corr= -243.04396\n", "ibin= 805 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 102.2 161.3 0.040 -0.010 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 0.0442 1.26e-09\n", "V_corr= -230.60750\n", "ibin= 806 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 121.6 119.7 -0.064 0.069 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 8.84e+03 -0.0417 6.87e-10\n", "V_corr= -211.22386\n", "ibin= 807 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 87.5 159.3 0.014 -0.007 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0307 1.34e-09\n", "V_corr= -245.35104\n", "ibin= 808 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 128.1 132.0 -0.037 0.019 0.000 0.000 0.418 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 1.17e-09\n", "V_corr= -204.72413\n", "ibin= 809 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 101.7 165.3 0.039 0.061 0.000 0.000 0.327 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+04 -0.0623 1.22e-09\n", "V_corr= -231.08999\n", "ibin= 810 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 72.8 150.5 0.035 0.083 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.194 1.43e-09\n", "V_corr= -260.00475\n", "ibin= 811 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 85.4 130.4 0.022 0.096 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0465 1.17e-09\n", "V_corr= -247.45350\n", "ibin= 812 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 114.7 167.9 0.040 -0.020 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 2.83e+03 0.366 3.15e-10\n", "V_corr= -218.05934\n", "ibin= 813 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 115.3 160.2 -0.022 0.020 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0921 1.17e-09\n", "V_corr= -217.52772\n", "ibin= 814 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 131.3 163.5 -0.045 0.003 0.000 0.000 0.338 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00373 1.22e-09\n", "V_corr= -201.54782\n", "ibin= 815 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 114.6 178.3 0.019 0.060 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.101 1.21e-09\n", "V_corr= -218.22719\n", "ibin= 816 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 105.4 148.4 0.024 -0.041 0.000 0.000 0.727 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0206 1.20e-09\n", "V_corr= -227.41010\n", "ibin= 817 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 117.3 129.8 -0.003 0.009 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.109 1.05e-09\n", "V_corr= -215.52509\n", "ibin= 818 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 141.3 135.3 0.037 0.094 0.000 0.000 0.329 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+03 0.413 1.72e-10\n", "V_corr= -191.51635\n", "ibin= 819 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 127.4 143.4 0.055 0.051 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.221 8.37e-10\n", "V_corr= -205.40871\n", "ibin= 820 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 141.9 131.2 0.032 -0.038 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 3.10e+03 -0.106 1.64e-10\n", "V_corr= -190.95061\n", "ibin= 821 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 136.2 207.9 -0.019 0.053 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 9.19e+03 0.271 5.22e-10\n", "V_corr= -196.56964\n", "ibin= 822 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 161.9 154.9 -0.037 0.041 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.234 6.92e-10\n", "V_corr= -170.93175\n", "ibin= 823 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 116.8 137.8 -0.073 -0.008 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.230 7.29e-10\n", "V_corr= -216.02808\n", "ibin= 824 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 124.2 109.1 -0.044 -0.005 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.294 6.72e-10\n", "V_corr= -208.59739\n", "ibin= 825 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 144.1 137.6 -0.061 0.009 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+03 0.410 8.78e-11\n", "V_corr= -188.69089\n", "ibin= 826 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 139.4 177.7 -0.026 0.111 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.315 9.60e-10\n", "V_corr= -193.41890\n", "ibin= 827 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 828 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 829 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 830 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 -19.8 68.4 0.007 0.000 0.000 0.000 1.172 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 -0.236 3.48e-11\n", "V_corr= -352.63877\n", "ibin= 831 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 25.5 87.8 0.013 0.014 0.000 0.000 1.072 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.779 2.52e-10\n", "V_corr= -307.32301\n", "ibin= 832 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 107.6 219.2 0.049 -0.010 0.000 0.000 1.203 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.174 3.72e-10\n", "V_corr= -225.18433\n", "ibin= 833 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -2.0 138.2 -0.001 0.018 0.000 0.000 1.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+03 0.290 4.83e-11\n", "V_corr= -334.78835\n", "ibin= 834 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 18.1 83.3 0.025 -0.008 0.000 0.000 0.979 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 -0.252 5.98e-11\n", "V_corr= -314.71421\n", "ibin= 835 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 278 -15.6 50.3 0.005 -0.009 0.000 0.000 0.859 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+04 -0.898 2.09e-10\n", "V_corr= -348.44639\n", "ibin= 836 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 -8.9 158.9 -0.012 0.048 0.000 0.000 1.708 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.521 2.89e-10\n", "V_corr= -341.70066\n", "ibin= 837 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 39.8 50.1 0.009 -0.000 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.368 4.12e-10\n", "V_corr= -292.98808\n", "ibin= 838 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -7.5 88.1 -0.003 -0.008 0.000 0.000 1.039 NaN\n", "Ages, Metallicities, Weights:\n", " 8.36e+03 -0.752 1.55e-10\n", "V_corr= -340.29061\n", "ibin= 839 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 8.9 152.4 0.033 0.015 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 761. 0.610 4.00e-11\n", "V_corr= -323.95482\n", "ibin= 840 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -30.8 78.2 0.002 -0.002 0.000 0.000 0.807 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.13 2.60e-10\n", "V_corr= -363.57314\n", "ibin= 841 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -14.0 133.4 -0.023 0.015 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 801. 0.104 3.26e-11\n", "V_corr= -346.80499\n", "ibin= 842 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -22.4 202.4 0.005 0.042 0.000 0.000 1.207 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+03 0.681 7.46e-11\n", "V_corr= -355.24083\n", "ibin= 843 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -5.2 98.2 0.010 0.004 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.569 4.27e-10\n", "V_corr= -338.00654\n", "ibin= 844 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 46.3 188.5 0.046 0.039 0.000 0.000 0.758 NaN\n", "Ages, Metallicities, Weights:\n", " 2.98e+03 -0.0537 1.31e-10\n", "V_corr= -286.47683\n", "ibin= 845 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -18.4 150.8 0.031 0.031 0.000 0.000 0.707 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.220 6.09e-10\n", "V_corr= -351.21311\n", "ibin= 846 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 47.9 136.0 0.051 0.026 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 6.17e+03 -0.114 2.62e-10\n", "V_corr= -284.92817\n", "ibin= 847 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 42.6 110.2 0.010 0.021 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.487 5.26e-10\n", "V_corr= -290.21657\n", "ibin= 848 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 59.0 95.3 0.019 0.024 0.000 0.000 0.690 NaN\n", "Ages, Metallicities, Weights:\n", " 2.17e+03 -0.334 9.56e-11\n", "V_corr= -273.77818\n", "ibin= 849 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 363 21.1 218.0 -0.034 0.116 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 0.491 1.25e-09\n", "V_corr= -311.74218\n", "ibin= 850 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 95 33.9 124.1 0.033 0.008 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 2.90e+03 -0.333 1.37e-10\n", "V_corr= -298.87099\n", "ibin= 851 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -7.9 141.9 0.026 0.023 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.179 7.72e-10\n", "V_corr= -340.74329\n", "ibin= 852 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 35.5 132.7 -0.035 0.045 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 3.90e+03 0.175 2.69e-10\n", "V_corr= -297.28800\n", "ibin= 853 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 4.7 186.1 -0.022 0.077 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 0.226 9.16e-10\n", "V_corr= -328.13836\n", "ibin= 854 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 317 28.6 149.2 -0.028 0.066 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+03 0.447 1.83e-10\n", "V_corr= -304.20957\n", "ibin= 855 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 39.0 144.0 0.001 0.097 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 8.71e-10\n", "V_corr= -293.76657\n", "ibin= 856 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 40.0 144.7 -0.022 0.127 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.159 7.52e-10\n", "V_corr= -292.81249\n", "ibin= 857 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 47.8 135.1 0.034 0.038 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.248 9.22e-10\n", "V_corr= -284.97796\n", "ibin= 858 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 57.3 114.4 0.010 0.053 0.000 0.000 0.302 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 -0.305 8.10e-10\n", "V_corr= -275.54716\n", "ibin= 859 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 59.8 128.1 0.000 0.080 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 2.73e+03 0.109 2.29e-10\n", "V_corr= -273.05222\n", "ibin= 860 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 46.1 149.0 0.051 0.011 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 1.19e-09\n", "V_corr= -286.66213\n", "ibin= 861 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 61.6 168.2 -0.006 0.054 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 5.51e+03 0.289 5.69e-10\n", "V_corr= -271.23659\n", "ibin= 862 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 86.2 167.8 -0.027 0.100 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.228 1.51e-09\n", "V_corr= -246.63116\n", "ibin= 863 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 61.4 149.5 -0.013 0.016 0.000 0.000 0.393 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.170 1.24e-09\n", "V_corr= -271.41825\n", "ibin= 864 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 83.7 173.0 -0.027 0.037 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.115 1.52e-09\n", "V_corr= -249.15312\n", "ibin= 865 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 88.0 171.2 0.000 -0.016 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0215 1.46e-09\n", "V_corr= -244.83232\n", "ibin= 866 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 89.1 175.7 -0.000 0.029 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.235 1.47e-09\n", "V_corr= -243.67992\n", "ibin= 867 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 70.9 161.7 -0.004 0.015 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0455 1.46e-09\n", "V_corr= -261.93206\n", "ibin= 868 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 71.6 201.0 0.002 0.007 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.333 1.97e-09\n", "V_corr= -261.16310\n", "ibin= 869 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 71.7 156.7 0.058 0.044 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0606 1.46e-09\n", "V_corr= -261.12381\n", "ibin= 870 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 96.2 167.1 -0.033 0.018 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 0.0118 9.70e-10\n", "V_corr= -236.60769\n", "ibin= 871 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 88.5 124.6 -0.005 0.032 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0455 1.46e-09\n", "V_corr= -244.35619\n", "ibin= 872 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 91.2 171.4 -0.018 -0.031 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 8.02e+03 0.0483 8.10e-10\n", "V_corr= -241.57230\n", "ibin= 873 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 46 102.9 170.7 -0.001 0.028 0.000 0.000 0.342 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0505 1.52e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -229.86244\n", "ibin= 874 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 100.7 164.3 -0.007 -0.023 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0252 1.47e-09\n", "V_corr= -232.07937\n", "ibin= 875 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 97.1 112.7 -0.030 -0.027 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 5.03e+03 -0.175 4.31e-10\n", "V_corr= -235.75852\n", "ibin= 876 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 89.2 142.1 -0.023 0.024 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.257 1.17e-09\n", "V_corr= -243.58258\n", "ibin= 877 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 95.5 183.8 0.020 0.028 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0609 1.44e-09\n", "V_corr= -237.34325\n", "ibin= 878 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 110.8 138.5 -0.035 0.002 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0664 1.33e-09\n", "V_corr= -222.05808\n", "ibin= 879 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 102.5 153.2 0.030 -0.020 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0805 1.31e-09\n", "V_corr= -230.29983\n", "ibin= 880 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 92.8 164.1 -0.050 -0.002 0.000 0.000 0.643 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0270 1.36e-09\n", "V_corr= -239.99290\n", "ibin= 881 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 112.2 145.5 0.029 -0.036 0.000 0.000 0.274 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 -0.135 9.64e-10\n", "V_corr= -220.56607\n", "ibin= 882 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 102.1 174.7 -0.032 -0.045 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0454 1.28e-09\n", "V_corr= -230.71119\n", "ibin= 883 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 111.6 127.8 -0.016 0.027 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 -0.0512 1.10e-09\n", "V_corr= -221.17112\n", "ibin= 884 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 109.1 156.0 -0.036 0.075 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 8.03e+03 0.129 6.62e-10\n", "V_corr= -223.71610\n", "ibin= 885 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 139.1 135.7 -0.071 0.017 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 6.15e+03 -0.0890 4.30e-10\n", "V_corr= -193.70710\n", "ibin= 886 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 135.8 152.4 -0.080 0.015 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.237 8.92e-10\n", "V_corr= -196.97159\n", "ibin= 887 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 122.2 123.4 -0.037 0.050 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 2.22e+03 0.237 1.70e-10\n", "V_corr= -210.62093\n", "ibin= 888 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 127.6 118.9 0.077 0.009 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.235 8.38e-10\n", "V_corr= -205.20117\n", "ibin= 889 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 144.3 155.4 -0.029 -0.048 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 -0.135 5.53e-10\n", "V_corr= -188.55133\n", "ibin= 890 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 110.7 139.9 0.058 0.007 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0438 9.49e-10\n", "V_corr= -222.10042\n", "ibin= 891 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 227 119.5 190.0 -0.015 0.001 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 0.118 9.48e-10\n", "V_corr= -213.31219\n", "ibin= 892 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 136.6 144.5 -0.013 0.012 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.393 6.82e-10\n", "V_corr= -196.23147\n", "ibin= 893 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 126.7 167.3 -0.055 -0.026 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.121 9.80e-10\n", "V_corr= -206.11806\n", "ibin= 894 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 179.6 144.7 -0.017 -0.058 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 0.301 3.12e-10\n", "V_corr= -153.19503\n", "ibin= 895 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 145.1 131.7 0.032 -0.015 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.116 7.90e-10\n", "V_corr= -187.72390\n", "ibin= 896 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 897 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 898 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 899 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 49.2 180.1 0.037 0.010 0.000 0.000 0.998 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.202 4.22e-10\n", "V_corr= -283.56900\n", "ibin= 900 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 32.5 160.4 0.004 0.002 0.000 0.000 0.880 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.782 2.13e-10\n", "V_corr= -300.31171\n", "ibin= 901 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 2.1 173.0 0.012 0.109 0.000 0.000 1.071 NaN\n", "Ages, Metallicities, Weights:\n", " 3.00e+03 0.406 1.25e-10\n", "V_corr= -330.74063\n", "ibin= 902 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 53.0 206.9 0.018 0.029 0.000 0.000 0.820 NaN\n", "Ages, Metallicities, Weights:\n", " 9.42e+03 0.203 3.50e-10\n", "V_corr= -279.81680\n", "ibin= 903 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 7.8 153.1 -0.020 -0.007 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+03 0.0215 5.44e-11\n", "V_corr= -325.05848\n", "ibin= 904 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 22.6 128.7 0.028 0.024 0.000 0.000 1.328 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 0.132 8.69e-11\n", "V_corr= -310.24324\n", "ibin= 905 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 3.0 108.7 0.004 0.004 0.000 0.000 1.296 NaN\n", "Ages, Metallicities, Weights:\n", " 3.66e+03 -0.388 1.03e-10\n", "V_corr= -329.85597\n", "ibin= 906 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 18.5 77.1 0.007 0.001 0.000 0.000 0.776 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 -0.938 2.17e-10\n", "V_corr= -314.31468\n", "ibin= 907 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 251 19.4 216.8 -0.003 0.031 0.000 0.000 0.548 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 0.689 8.90e-10\n", "V_corr= -313.39180\n", "ibin= 908 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 22.2 170.2 0.001 0.039 0.000 0.000 1.045 NaN\n", "Ages, Metallicities, Weights:\n", " 6.30e+03 -0.372 1.69e-10\n", "V_corr= -310.60530\n", "ibin= 909 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 10.6 57.0 0.002 -0.004 0.000 0.000 0.794 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.763 3.30e-10\n", "V_corr= -322.24093\n", "ibin= 910 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -5.9 176.9 0.030 -0.028 0.000 0.000 1.720 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+03 0.395 5.49e-11\n", "V_corr= -338.72941\n", "ibin= 911 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -2.0 164.1 0.041 0.038 0.000 0.000 1.028 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.229 5.69e-10\n", "V_corr= -334.81282\n", "ibin= 912 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 45.4 120.4 0.020 -0.004 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.442 4.80e-10\n", "V_corr= -287.45819\n", "ibin= 913 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 47.5 187.7 0.029 -0.059 0.000 0.000 0.982 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0241 7.33e-10\n", "V_corr= -285.30108\n", "ibin= 914 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 222 34.3 66.9 0.009 -0.001 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+03 -0.594 5.60e-11\n", "V_corr= -298.46144\n", "ibin= 915 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 45.7 197.7 0.104 0.062 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.155 6.68e-10\n", "V_corr= -287.06231\n", "ibin= 916 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 20.5 150.5 -0.021 0.105 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.637 9.14e-11\n", "V_corr= -312.28793\n", "ibin= 917 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 17.9 156.9 -0.015 -0.027 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 0.196 1.98e-10\n", "V_corr= -314.95030\n", "ibin= 918 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 37.4 135.3 -0.008 -0.024 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.418 6.58e-10\n", "V_corr= -295.44629\n", "ibin= 919 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 7.1 117.0 0.061 0.005 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+03 0.224 1.05e-10\n", "V_corr= -325.67570\n", "ibin= 920 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 14.3 138.6 0.041 0.019 0.000 0.000 0.598 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 7.84e-10\n", "V_corr= -318.55241\n", "ibin= 921 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 50.6 137.8 0.044 0.006 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 8.47e-10\n", "V_corr= -282.17704\n", "ibin= 922 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 53.9 99.8 -0.048 0.038 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.335 7.90e-10\n", "V_corr= -278.86553\n", "ibin= 923 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 46.8 169.5 -0.007 0.021 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 2.50e+03 0.388 2.35e-10\n", "V_corr= -286.00427\n", "ibin= 924 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 38.1 142.6 0.033 0.070 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0391 1.01e-09\n", "V_corr= -294.74217\n", "ibin= 925 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 57.1 131.8 0.023 0.046 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 3.35e+03 0.0644 2.49e-10\n", "V_corr= -275.68252\n", "ibin= 926 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 28.0 135.9 -0.011 0.051 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.115 1.03e-09\n", "V_corr= -304.85562\n", "ibin= 927 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 74.5 144.4 -0.033 0.058 0.000 0.000 0.364 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 1.02e-09\n", "V_corr= -258.31702\n", "ibin= 928 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 52.4 148.7 0.002 0.069 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.159 1.08e-09\n", "V_corr= -280.43529\n", "ibin= 929 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 58.8 132.1 0.009 0.025 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.252 1.11e-09\n", "V_corr= -274.04687\n", "ibin= 930 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 55.6 149.0 0.093 0.094 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0553 1.26e-09\n", "V_corr= -277.23929\n", "ibin= 931 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 72.6 185.6 0.004 0.004 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 0.491 2.91e-10\n", "V_corr= -260.16480\n", "ibin= 932 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 58.2 194.1 -0.017 0.104 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.449 2.08e-09\n", "V_corr= -274.63194\n", "ibin= 933 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 72.3 150.9 -0.028 0.024 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0435 1.51e-09\n", "V_corr= -260.46231\n", "ibin= 934 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 80.0 159.1 -0.042 -0.005 0.000 0.000 0.311 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.125 1.44e-09\n", "V_corr= -252.79413\n", "ibin= 935 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 68.7 171.2 -0.045 0.017 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 0.138 1.68e-09\n", "V_corr= -264.13176\n", "ibin= 936 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 90.1 158.5 -0.038 0.073 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.134 1.68e-09\n", "V_corr= -242.67360\n", "ibin= 937 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 87.5 133.8 -0.030 0.018 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 6.23e+03 -0.0750 6.08e-10\n", "V_corr= -245.35760\n", "ibin= 938 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 96.8 165.2 0.049 -0.039 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 1.44e-09\n", "V_corr= -236.03059\n", "ibin= 939 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 99.1 151.1 0.053 0.031 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0360 1.56e-09\n", "V_corr= -233.66474\n", "ibin= 940 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 85.7 164.0 -0.075 0.063 0.000 0.000 0.770 NaN\n", "Ages, Metallicities, Weights:\n", " 6.42e+03 0.188 7.45e-10\n", "V_corr= -247.12038\n", "ibin= 941 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 99.7 152.9 0.001 0.029 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.124 1.19e-09\n", "V_corr= -233.06008\n", "ibin= 942 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 95.7 154.9 0.013 -0.016 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0335 1.57e-09\n", "V_corr= -237.11684\n", "ibin= 943 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 92.6 136.9 0.055 -0.014 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.325 1.25e-09\n", "V_corr= -240.19238\n", "ibin= 944 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 93.6 152.7 -0.023 0.034 0.000 0.000 0.724 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 1.43e-09\n", "V_corr= -239.22985\n", "ibin= 945 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 95.8 140.8 0.042 0.015 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+04 -0.109 9.90e-10\n", "V_corr= -236.98055\n", "ibin= 946 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 83.6 173.4 0.023 0.023 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 0.204 1.65e-09\n", "V_corr= -249.17428\n", "ibin= 947 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 110.5 155.7 -0.086 0.063 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 0.206 1.46e-09\n", "V_corr= -222.32656\n", "ibin= 948 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 93.7 124.1 -0.030 0.028 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 8.76e+03 -0.0306 7.17e-10\n", "V_corr= -239.14096\n", "ibin= 949 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 98.9 147.3 0.049 0.002 0.000 0.000 0.324 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+03 0.531 2.47e-10\n", "V_corr= -233.86293\n", "ibin= 950 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 225 99.9 171.1 0.028 0.025 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0286 1.30e-09\n", "V_corr= -232.88103\n", "ibin= 951 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 91.6 153.9 0.061 0.013 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.167 7.17e-10\n", "V_corr= -241.19199\n", "ibin= 952 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 98.6 201.6 0.047 0.007 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.577 2.39e-09\n", "V_corr= -234.17757\n", "ibin= 953 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 110.6 168.5 -0.023 0.008 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00689 1.23e-09\n", "V_corr= -222.22536\n", "ibin= 954 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 121.6 148.9 0.028 0.000 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0640 1.14e-09\n", "V_corr= -211.21432\n", "ibin= 955 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 148.6 139.7 -0.084 0.057 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.0244 9.52e-10\n", "V_corr= -184.24060\n", "ibin= 956 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 136.7 78.4 -0.021 0.013 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.388 5.13e-10\n", "V_corr= -196.13592\n", "ibin= 957 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 132.2 140.7 -0.003 -0.020 0.000 0.000 0.343 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+03 0.528 1.83e-10\n", "V_corr= -200.60988\n", "ibin= 958 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 112.9 104.7 0.015 0.047 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.360 1.97e-10\n", "V_corr= -219.93883\n", "ibin= 959 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 147.2 99.0 -0.019 0.024 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 8.48e-10\n", "V_corr= -185.62607\n", "ibin= 960 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 189 104.5 134.2 -0.014 -0.059 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 9.11e-10\n", "V_corr= -228.26300\n", "ibin= 961 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 118.4 164.3 -0.011 0.023 0.000 0.000 0.366 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0204 9.47e-10\n", "V_corr= -214.42207\n", "ibin= 962 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 143.1 120.1 0.041 -0.013 0.000 0.000 0.315 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.308 7.63e-10\n", "V_corr= -189.68593\n", "ibin= 963 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 111.5 193.8 -0.025 -0.067 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 2.44e+03 0.344 1.98e-10\n", "V_corr= -221.31579\n", "ibin= 964 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 183.8 140.2 -0.078 0.037 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.152 9.20e-10\n", "V_corr= -149.00268\n", "ibin= 965 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 966 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 967 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 968 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -18.4 212.3 0.045 -0.013 0.000 0.000 1.091 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.442 3.45e-10\n", "V_corr= -351.21514\n", "ibin= 969 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 43.8 119.6 0.037 0.023 0.000 0.000 1.536 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.700 2.35e-10\n", "V_corr= -289.04608\n", "ibin= 970 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 31.3 84.7 0.029 -0.010 0.000 0.000 1.131 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.705 2.50e-10\n", "V_corr= -301.54324\n", "ibin= 971 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 17.0 129.7 -0.001 -0.046 0.000 0.000 0.793 NaN\n", "Ages, Metallicities, Weights:\n", " 9.03e+03 -0.652 1.75e-10\n", "V_corr= -315.81101\n", "ibin= 972 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 16.0 205.7 0.019 -0.011 0.000 0.000 0.798 NaN\n", "Ages, Metallicities, Weights:\n", " 3.53e+03 0.298 1.66e-10\n", "V_corr= -316.78463\n", "ibin= 973 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 35.9 136.0 0.049 0.019 0.000 0.000 1.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+03 0.149 5.76e-11\n", "V_corr= -296.86156\n", "ibin= 974 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 28.7 141.1 -0.025 0.070 0.000 0.000 0.661 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -0.103 3.37e-10\n", "V_corr= -304.12521\n", "ibin= 975 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 31.6 66.0 0.012 0.010 0.000 0.000 0.769 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.602 3.47e-10\n", "V_corr= -301.24967\n", "ibin= 976 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -4.7 151.2 -0.002 -0.044 0.000 0.000 1.290 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+03 -0.0143 4.42e-11\n", "V_corr= -337.51916\n", "ibin= 977 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 39.7 210.3 0.032 -0.019 0.000 0.000 0.677 NaN\n", "Ages, Metallicities, Weights:\n", " 2.40e+03 0.169 1.12e-10\n", "V_corr= -293.10029\n", "ibin= 978 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 0.4 140.7 0.033 0.030 0.000 0.000 0.836 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.572 3.39e-10\n", "V_corr= -332.40755\n", "ibin= 979 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 9.8 111.6 0.024 0.058 0.000 0.000 0.756 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.597 6.40e-11\n", "V_corr= -322.99540\n", "ibin= 980 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 26.3 87.1 -0.017 -0.028 0.000 0.000 1.027 NaN\n", "Ages, Metallicities, Weights:\n", " 6.66e+03 -0.801 1.64e-10\n", "V_corr= -306.48678\n", "ibin= 981 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 23.7 84.3 -0.010 0.011 0.000 0.000 1.254 NaN\n", "Ages, Metallicities, Weights:\n", " 4.38e+03 -0.240 1.75e-10\n", "V_corr= -309.06185\n", "ibin= 982 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 30.3 164.6 0.042 0.033 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 2.55e+03 0.0376 1.26e-10\n", "V_corr= -302.52183\n", "ibin= 983 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 74 7.5 108.1 0.018 0.066 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 8.10e+03 -0.241 2.88e-10\n", "V_corr= -325.32822\n", "ibin= 984 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 43.8 148.3 -0.002 -0.028 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.582 4.22e-10\n", "V_corr= -288.97646\n", "ibin= 985 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 26.9 135.6 0.004 0.062 0.000 0.000 1.019 NaN\n", "Ages, Metallicities, Weights:\n", " 4.50e+03 0.187 2.65e-10\n", "V_corr= -305.89746\n", "ibin= 986 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 47.2 164.0 0.017 -0.028 0.000 0.000 0.812 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.411 6.53e-10\n", "V_corr= -285.62617\n", "ibin= 987 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 42.1 112.8 -0.014 -0.015 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 2.44e+03 -0.141 1.40e-10\n", "V_corr= -290.70648\n", "ibin= 988 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 7.4 143.6 0.067 0.080 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0858 9.52e-10\n", "V_corr= -325.39027\n", "ibin= 989 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 18.0 118.6 -0.027 0.028 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 -0.00688 1.81e-10\n", "V_corr= -314.85440\n", "ibin= 990 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 38.8 145.9 0.080 0.025 0.000 0.000 0.624 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.127 9.33e-10\n", "V_corr= -294.03620\n", "ibin= 991 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 32.8 142.1 0.014 0.012 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 8.71e+03 -0.173 4.71e-10\n", "V_corr= -300.05479\n", "ibin= 992 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 45.1 124.5 -0.037 0.056 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 8.73e+03 -0.126 4.94e-10\n", "V_corr= -287.70407\n", "ibin= 993 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 30.5 174.3 0.048 0.087 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 9.45e-10\n", "V_corr= -302.29932\n", "ibin= 994 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 46.3 168.5 -0.001 0.087 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.0726 9.38e-10\n", "V_corr= -286.54607\n", "ibin= 995 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 38.9 145.8 0.007 0.040 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.196 1.04e-09\n", "V_corr= -293.94100\n", "ibin= 996 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 44.1 151.1 -0.060 0.052 0.000 0.000 0.313 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 -0.244 1.01e-09\n", "V_corr= -288.71294\n", "ibin= 997 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 49.6 156.8 -0.008 0.054 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 0.0752 1.01e-09\n", "V_corr= -283.16933\n", "ibin= 998 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 75.3 165.0 0.019 -0.001 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.144 1.27e-09\n", "V_corr= -257.54114\n", "ibin= 999 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 62.8 137.9 -0.044 0.015 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 3.29e+03 0.137 3.41e-10\n", "V_corr= -269.98727\n", "ibin= 1000 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 53.2 184.7 -0.013 0.149 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.303 1.73e-09\n", "V_corr= -279.58539\n", "ibin= 1001 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 83.5 124.0 -0.057 0.005 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.259 1.32e-09\n", "V_corr= -249.34236\n", "ibin= 1002 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 69.7 151.5 0.027 0.055 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0205 1.59e-09\n", "V_corr= -263.09222\n", "ibin= 1003 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 87.5 150.1 -0.021 0.072 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0677 1.52e-09\n", "V_corr= -245.30116\n", "ibin= 1004 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 73.6 137.6 0.018 -0.004 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.105 1.31e-09\n", "V_corr= -259.16907\n", "ibin= 1005 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 61.7 172.8 -0.023 0.071 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.159 1.79e-09\n", "V_corr= -271.12494\n", "ibin= 1006 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 69.1 168.9 -0.078 0.037 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 7.65e+03 0.164 9.27e-10\n", "V_corr= -263.72394\n", "ibin= 1007 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 74.4 165.6 0.007 0.072 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.113 1.50e-09\n", "V_corr= -258.37426\n", "ibin= 1008 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 86.9 149.3 -0.013 -0.020 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 2.60e+03 0.0235 3.06e-10\n", "V_corr= -245.87388\n", "ibin= 1009 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 86.6 144.7 -0.002 -0.029 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0446 1.66e-09\n", "V_corr= -246.20736\n", "ibin= 1010 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 102.6 137.3 -0.119 -0.002 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.186 1.47e-09\n", "V_corr= -230.20514\n", "ibin= 1011 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 80.0 180.0 -0.079 -0.028 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.175 1.49e-09\n", "V_corr= -252.84307\n", "ibin= 1012 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 85.4 160.1 -0.016 0.007 0.000 0.000 0.340 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0136 1.62e-09\n", "V_corr= -247.44765\n", "ibin= 1013 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 73.0 158.8 -0.029 0.008 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 2.33e+03 0.359 3.23e-10\n", "V_corr= -259.81374\n", "ibin= 1014 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 101.7 160.4 -0.012 -0.009 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 1.38e-09\n", "V_corr= -231.08236\n", "ibin= 1015 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 99.4 155.8 -0.035 -0.085 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.166 1.18e-09\n", "V_corr= -233.38142\n", "ibin= 1016 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 119.6 121.6 -0.036 0.055 0.000 0.000 0.668 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0197 1.45e-09\n", "V_corr= -213.18620\n", "ibin= 1017 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 112.6 137.9 -0.088 -0.003 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 -0.0224 1.04e-09\n", "V_corr= -220.22830\n", "ibin= 1018 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 97.5 134.1 0.036 0.019 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+03 0.495 2.47e-10\n", "V_corr= -235.28573\n", "ibin= 1019 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 99.2 95.6 -0.002 0.014 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.177 1.02e-09\n", "V_corr= -233.64323\n", "ibin= 1020 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 84.2 153.9 0.035 0.051 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.0504 1.24e-09\n", "V_corr= -248.63066\n", "ibin= 1021 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 120.6 137.1 0.015 -0.036 0.000 0.000 0.708 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.255 1.12e-09\n", "V_corr= -212.22337\n", "ibin= 1022 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 110.3 123.7 -0.052 0.074 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0288 1.16e-09\n", "V_corr= -222.46981\n", "ibin= 1023 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 140.7 125.1 -0.023 -0.070 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.250 9.83e-10\n", "V_corr= -192.09475\n", "ibin= 1024 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 137.9 174.9 -0.020 0.050 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.139 1.23e-09\n", "V_corr= -194.89082\n", "ibin= 1025 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 117.9 178.6 -0.037 -0.020 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 1.10e-09\n", "V_corr= -214.86337\n", "ibin= 1026 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 106.3 133.9 0.003 -0.067 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 883. 0.565 9.83e-11\n", "V_corr= -226.50361\n", "ibin= 1027 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 127.4 145.3 -0.008 -0.012 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 5.62e+03 -0.0972 3.72e-10\n", "V_corr= -205.38999\n", "ibin= 1028 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 121.8 155.5 0.035 -0.004 0.000 0.000 0.391 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.164 9.47e-10\n", "V_corr= -211.03508\n", "ibin= 1029 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 144.3 109.4 0.015 0.027 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.219 8.59e-10\n", "V_corr= -188.53826\n", "ibin= 1030 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 114.5 150.9 0.055 0.030 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 9.63e+03 0.0853 6.07e-10\n", "V_corr= -218.33535\n", "ibin= 1031 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 100.5 136.0 -0.012 -0.005 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 8.18e+03 0.0624 5.24e-10\n", "V_corr= -232.34056\n", "ibin= 1032 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 126.8 187.0 -0.017 0.055 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 9.62e-10\n", "V_corr= -205.98774\n", "ibin= 1033 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 148.4 173.8 0.042 0.077 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.270 1.01e-09\n", "V_corr= -184.43022\n", "ibin= 1034 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1035 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1036 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1037 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 140 -0.6 204.4 0.054 -0.006 0.000 0.000 1.954 NaN\n", "Ages, Metallicities, Weights:\n", " 2.56e+03 0.0996 9.87e-11\n", "V_corr= -333.39823\n", "ibin= 1038 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 31.2 167.5 0.008 0.062 0.000 0.000 1.260 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.281 3.98e-10\n", "V_corr= -301.59737\n", "ibin= 1039 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 38.1 30.1 -0.000 -0.001 0.000 0.000 4.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.879 3.00e-10\n", "V_corr= -294.72240\n", "ibin= 1040 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -14.7 119.7 0.013 0.011 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.812 2.36e-10\n", "V_corr= -347.53923\n", "ibin= 1041 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 6.3 170.1 0.028 0.047 0.000 0.000 1.182 NaN\n", "Ages, Metallicities, Weights:\n", " 947. 0.153 3.40e-11\n", "V_corr= -326.47278\n", "ibin= 1042 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 10.6 127.0 0.045 0.043 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.533 3.61e-10\n", "V_corr= -322.22123\n", "ibin= 1043 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 31.8 180.3 0.003 -0.050 0.000 0.000 0.885 NaN\n", "Ages, Metallicities, Weights:\n", " 3.06e+03 0.158 1.33e-10\n", "V_corr= -300.97636\n", "ibin= 1044 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 15.6 72.9 -0.005 0.005 0.000 0.000 0.914 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.612 3.64e-10\n", "V_corr= -317.21190\n", "ibin= 1045 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 35.8 83.8 0.010 0.015 0.000 0.000 0.788 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.528 4.04e-10\n", "V_corr= -297.02946\n", "ibin= 1046 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 6.0 196.1 0.023 0.023 0.000 0.000 1.320 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0378 6.07e-10\n", "V_corr= -326.81847\n", "ibin= 1047 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 229 15.9 102.6 0.010 0.000 0.000 0.000 0.673 NaN\n", "Ages, Metallicities, Weights:\n", " 1.76e+04 -0.633 3.72e-10\n", "V_corr= -316.95391\n", "ibin= 1048 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 32.8 142.5 0.054 0.039 0.000 0.000 0.858 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 0.00427 9.11e-11\n", "V_corr= -300.03794\n", "ibin= 1049 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 271 52.5 108.3 0.029 0.008 0.000 0.000 0.822 NaN\n", "Ages, Metallicities, Weights:\n", " 3.60e+03 -0.295 1.41e-10\n", "V_corr= -280.27541\n", "ibin= 1050 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 48.0 121.0 -0.045 0.026 0.000 0.000 0.673 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.367 5.63e-10\n", "V_corr= -284.77884\n", "ibin= 1051 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 3.2 161.4 0.047 0.045 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 7.23e+03 0.158 4.03e-10\n", "V_corr= -329.62710\n", "ibin= 1052 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 20.0 115.2 0.004 0.025 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 6.02e+03 -0.195 2.56e-10\n", "V_corr= -312.80866\n", "ibin= 1053 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 9.2 165.7 -0.010 0.096 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 7.48e+03 0.112 4.05e-10\n", "V_corr= -323.63764\n", "ibin= 1054 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 34.7 200.0 -0.019 0.116 0.000 0.000 0.711 NaN\n", "Ages, Metallicities, Weights:\n", " 3.48e+03 0.636 3.49e-10\n", "V_corr= -298.11460\n", "ibin= 1055 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 37.3 86.0 -0.013 0.004 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+04 -0.553 4.45e-10\n", "V_corr= -295.50722\n", "ibin= 1056 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 37.3 127.4 0.000 0.048 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 7.51e-10\n", "V_corr= -295.46105\n", "ibin= 1057 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 224 15.4 172.3 0.062 0.062 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.672 1.24e-10\n", "V_corr= -317.41297\n", "ibin= 1058 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 64.2 104.0 -0.069 0.015 0.000 0.000 0.847 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.383 7.83e-10\n", "V_corr= -268.57572\n", "ibin= 1059 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 69.6 146.2 0.025 0.036 0.000 0.000 0.322 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+04 -0.0779 6.86e-10\n", "V_corr= -263.19214\n", "ibin= 1060 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 19.2 105.3 0.016 0.021 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.458 6.46e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -313.59449\n", "ibin= 1061 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 35.5 156.0 -0.074 0.076 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 5.84e+03 0.179 4.62e-10\n", "V_corr= -297.32187\n", "ibin= 1062 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 54.8 157.1 0.033 -0.045 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 8.11e+03 -0.175 4.95e-10\n", "V_corr= -277.99309\n", "ibin= 1063 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 57.0 116.3 -0.037 0.022 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 4.26e+03 -0.181 3.15e-10\n", "V_corr= -275.76103\n", "ibin= 1064 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 248 54.8 177.7 -0.042 0.124 0.000 0.000 0.728 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.440 1.79e-09\n", "V_corr= -277.98544\n", "ibin= 1065 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 54.8 170.1 -0.036 0.040 0.000 0.000 0.560 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 0.321 2.63e-10\n", "V_corr= -278.03722\n", "ibin= 1066 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 33.9 144.4 0.018 0.022 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 6.11e+03 0.0227 5.62e-10\n", "V_corr= -298.94118\n", "ibin= 1067 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 33.0 152.3 -0.010 -0.025 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 5.11e+03 -0.112 4.63e-10\n", "V_corr= -299.80745\n", "ibin= 1068 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 48.4 128.3 0.022 0.032 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 5.45e+03 0.0102 5.40e-10\n", "V_corr= -284.44278\n", "ibin= 1069 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 77.6 163.0 -0.012 0.029 0.000 0.000 0.630 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 -0.00733 1.10e-09\n", "V_corr= -255.24350\n", "ibin= 1070 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 86.1 142.1 0.056 0.039 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.169 1.48e-09\n", "V_corr= -246.75266\n", "ibin= 1071 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 70.2 156.0 -0.061 -0.020 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 4.40e+03 -0.0200 4.93e-10\n", "V_corr= -262.64794\n", "ibin= 1072 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 79.5 174.9 -0.057 -0.045 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0921 1.69e-09\n", "V_corr= -253.29417\n", "ibin= 1073 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 67.5 141.6 0.007 0.089 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0192 1.65e-09\n", "V_corr= -265.26926\n", "ibin= 1074 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 90.9 152.4 -0.022 0.047 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0781 1.66e-09\n", "V_corr= -241.91368\n", "ibin= 1075 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 81.6 155.0 -0.036 0.059 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0284 1.72e-09\n", "V_corr= -251.16891\n", "ibin= 1076 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 83.5 182.6 -0.027 0.040 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.147 1.84e-09\n", "V_corr= -249.26878\n", "ibin= 1077 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 65.9 168.8 0.003 -0.016 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 4.61e+03 0.273 6.37e-10\n", "V_corr= -266.93708\n", "ibin= 1078 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 88.2 154.3 0.016 0.063 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -0.0565 1.10e-09\n", "V_corr= -244.61844\n", "ibin= 1079 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 90.4 116.5 0.001 0.031 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0541 1.63e-09\n", "V_corr= -242.36718\n", "ibin= 1080 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 77.1 188.3 -0.054 0.068 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 9.64e+03 0.240 1.19e-09\n", "V_corr= -255.69949\n", "ibin= 1081 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 110.3 162.4 0.011 0.012 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0183 1.64e-09\n", "V_corr= -222.47034\n", "ibin= 1082 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 77.1 184.5 -0.044 0.080 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.283 1.91e-09\n", "V_corr= -255.68139\n", "ibin= 1083 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 80.2 165.1 -0.056 0.052 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 0.220 1.39e-09\n", "V_corr= -252.59942\n", "ibin= 1084 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 97.7 171.7 -0.090 -0.033 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0277 1.58e-09\n", "V_corr= -235.13872\n", "ibin= 1085 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 103.1 167.9 -0.022 0.025 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0877 1.62e-09\n", "V_corr= -229.73260\n", "ibin= 1086 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 93.6 163.0 -0.031 0.036 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0221 1.48e-09\n", "V_corr= -239.18275\n", "ibin= 1087 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 114.9 157.6 -0.076 -0.040 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0733 1.47e-09\n", "V_corr= -217.93687\n", "ibin= 1088 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 82.1 123.8 0.030 0.037 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0241 1.41e-09\n", "V_corr= -250.69075\n", "ibin= 1089 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 116.6 111.4 -0.034 0.069 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.252 1.14e-09\n", "V_corr= -216.25869\n", "ibin= 1090 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 97.1 155.6 -0.025 0.027 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 0.0584 1.21e-09\n", "V_corr= -235.75381\n", "ibin= 1091 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 119.2 129.3 0.013 0.002 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 2.58e+03 -0.0276 2.20e-10\n", "V_corr= -213.65692\n", "ibin= 1092 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 295 116.4 158.5 -0.017 0.027 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+03 0.655 2.65e-10\n", "V_corr= -216.40457\n", "ibin= 1093 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 114.4 165.5 0.006 0.004 0.000 0.000 0.371 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00677 1.19e-09\n", "V_corr= -218.37448\n", "ibin= 1094 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 132.7 118.8 0.003 0.018 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+03 -0.0102 1.42e-10\n", "V_corr= -200.15093\n", "ibin= 1095 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 119.0 147.6 0.006 0.016 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0239 1.14e-09\n", "V_corr= -213.84622\n", "ibin= 1096 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 131.7 135.8 0.016 0.027 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.273 7.75e-10\n", "V_corr= -201.09042\n", "ibin= 1097 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 122.1 130.3 0.003 0.054 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 7.06e+03 0.0143 4.66e-10\n", "V_corr= -210.73969\n", "ibin= 1098 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 104.4 161.1 0.048 0.062 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 3.03e+03 0.453 2.90e-10\n", "V_corr= -228.39181\n", "ibin= 1099 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 129.3 122.3 -0.021 -0.045 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 3.31e+03 -0.165 2.03e-10\n", "V_corr= -203.52690\n", "ibin= 1100 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 114.9 138.2 0.024 -0.009 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0839 9.33e-10\n", "V_corr= -217.86728\n", "ibin= 1101 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 126.9 187.8 -0.059 0.100 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00877 9.01e-10\n", "V_corr= -205.86989\n", "ibin= 1102 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 165.2 169.5 -0.024 0.088 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.581 1.56e-09\n", "V_corr= -167.60265\n", "ibin= 1103 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1104 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1105 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1106 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 285 59.6 217.3 0.033 -0.018 0.000 0.000 1.299 NaN\n", "Ages, Metallicities, Weights:\n", " 33.8 -0.634 2.90e-12\n", "V_corr= -273.19647\n", "ibin= 1107 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 173 34.6 209.8 0.041 0.040 0.000 0.000 1.130 NaN\n", "Ages, Metallicities, Weights:\n", " 8.15e+03 0.562 3.30e-10\n", "V_corr= -298.22692\n", "ibin= 1108 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 260 33.8 199.9 0.010 0.069 0.000 0.000 1.322 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+03 0.428 5.45e-11\n", "V_corr= -298.97020\n", "ibin= 1109 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 63.5 192.2 -0.020 -0.019 0.000 0.000 0.690 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.459 3.02e-10\n", "V_corr= -269.31581\n", "ibin= 1110 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -24.5 152.7 -0.004 0.033 0.000 0.000 2.231 NaN\n", "Ages, Metallicities, Weights:\n", " 2.00e+03 -0.542 5.14e-11\n", "V_corr= -357.34378\n", "ibin= 1111 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 12.6 96.3 0.004 0.011 0.000 0.000 1.301 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 -0.444 7.38e-11\n", "V_corr= -320.18003\n", "ibin= 1112 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 13.8 116.9 0.020 0.019 0.000 0.000 1.094 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.328 4.80e-10\n", "V_corr= -319.05094\n", "ibin= 1113 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -17.6 160.3 0.020 0.073 0.000 0.000 0.886 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.361 4.58e-10\n", "V_corr= -350.40887\n", "ibin= 1114 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -7.4 84.0 -0.008 0.003 0.000 0.000 1.027 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.515 4.36e-10\n", "V_corr= -340.16035\n", "ibin= 1115 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 13.9 152.1 0.036 -0.004 0.000 0.000 0.833 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.322 5.35e-10\n", "V_corr= -318.87285\n", "ibin= 1116 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 10.8 175.2 0.028 -0.049 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.181 5.43e-10\n", "V_corr= -321.99637\n", "ibin= 1117 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 33.9 143.6 -0.057 0.023 0.000 0.000 0.909 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+03 0.239 6.63e-11\n", "V_corr= -298.90361\n", "ibin= 1118 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 33.9 208.6 0.052 0.039 0.000 0.000 0.852 NaN\n", "Ages, Metallicities, Weights:\n", " 7.06e+03 0.143 3.62e-10\n", "V_corr= -298.87785\n", "ibin= 1119 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -3.5 133.4 0.010 0.042 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 0.480 1.02e-10\n", "V_corr= -336.34799\n", "ibin= 1120 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 40.6 127.9 -0.027 0.006 0.000 0.000 1.131 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 -0.0883 4.59e-10\n", "V_corr= -292.25605\n", "ibin= 1121 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 46.1 89.6 -0.046 0.026 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 9.19e+03 -0.216 3.60e-10\n", "V_corr= -286.67571\n", "ibin= 1122 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 7.7 123.0 0.028 0.011 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+03 0.167 7.58e-11\n", "V_corr= -325.14846\n", "ibin= 1123 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 40.8 169.3 0.071 0.057 0.000 0.000 0.847 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.597 1.06e-10\n", "V_corr= -292.02299\n", "ibin= 1124 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 37.5 107.2 0.017 0.045 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+03 0.145 1.03e-10\n", "V_corr= -295.27628\n", "ibin= 1125 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 38.6 118.1 -0.022 -0.005 0.000 0.000 0.772 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.235 8.48e-10\n", "V_corr= -294.15905\n", "ibin= 1126 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 22.6 108.6 0.010 0.049 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 8.38e+03 -0.185 4.29e-10\n", "V_corr= -310.19729\n", "ibin= 1127 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 48.2 141.6 -0.011 0.056 0.000 0.000 0.333 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0446 1.06e-09\n", "V_corr= -284.57942\n", "ibin= 1128 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 27.1 140.1 0.018 0.055 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 2.87e+03 -0.0306 2.01e-10\n", "V_corr= -305.71959\n", "ibin= 1129 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 33.9 135.7 0.029 0.039 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.288 9.06e-10\n", "V_corr= -298.86169\n", "ibin= 1130 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 29.9 167.4 0.008 0.045 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 4.46e+03 0.425 4.56e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -302.87766\n", "ibin= 1131 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 39.1 160.7 0.002 0.001 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 9.82e+03 -0.129 6.26e-10\n", "V_corr= -293.70371\n", "ibin= 1132 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 51.2 136.8 -0.054 0.038 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.0638 1.14e-09\n", "V_corr= -281.62954\n", "ibin= 1133 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 53.6 137.7 -0.033 -0.026 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.325 9.05e-10\n", "V_corr= -279.25806\n", "ibin= 1134 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 45.2 176.2 -0.031 0.006 0.000 0.000 0.323 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.114 1.52e-09\n", "V_corr= -287.59576\n", "ibin= 1135 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 23.8 140.3 0.053 0.046 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.268 1.18e-09\n", "V_corr= -309.04616\n", "ibin= 1136 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 65.7 155.7 0.058 -0.030 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.109 1.26e-09\n", "V_corr= -267.12325\n", "ibin= 1137 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 64.1 156.4 -0.019 0.101 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 0.611 2.27e-10\n", "V_corr= -268.75869\n", "ibin= 1138 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 49.1 184.1 -0.142 0.066 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.241 1.96e-09\n", "V_corr= -283.72532\n", "ibin= 1139 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 82.6 163.6 -0.050 -0.016 0.000 0.000 0.334 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0629 1.92e-09\n", "V_corr= -250.21006\n", "ibin= 1140 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 85.0 161.2 -0.100 -0.053 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0620 1.81e-09\n", "V_corr= -247.81739\n", "ibin= 1141 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 198 60.7 172.3 -0.053 0.072 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 2.90e+03 0.602 5.83e-10\n", "V_corr= -272.08159\n", "ibin= 1142 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 75.4 159.1 -0.105 -0.038 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 9.97e+03 0.0478 1.19e-09\n", "V_corr= -257.43485\n", "ibin= 1143 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 97.9 153.2 -0.094 -0.090 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 -0.148 1.65e-09\n", "V_corr= -234.94045\n", "ibin= 1144 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 98.1 163.8 0.001 0.012 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0551 1.85e-09\n", "V_corr= -234.75384\n", "ibin= 1145 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 87.8 152.4 -0.024 0.038 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0662 1.65e-09\n", "V_corr= -245.01830\n", "ibin= 1146 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 77.5 178.7 0.058 0.021 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0893 1.86e-09\n", "V_corr= -255.35254\n", "ibin= 1147 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 96.4 173.8 -0.021 -0.060 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 0.0659 1.68e-09\n", "V_corr= -236.45681\n", "ibin= 1148 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 84.0 138.5 -0.052 0.005 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.221 1.54e-09\n", "V_corr= -248.82705\n", "ibin= 1149 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 106.4 193.5 -0.074 -0.036 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.106 1.69e-09\n", "V_corr= -226.40375\n", "ibin= 1150 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 77.9 131.1 0.044 -0.004 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.227 1.44e-09\n", "V_corr= -254.89440\n", "ibin= 1151 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 77.2 175.9 0.008 0.032 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0340 1.64e-09\n", "V_corr= -255.65205\n", "ibin= 1152 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 85.1 144.2 0.019 0.069 0.000 0.000 0.366 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.0234 1.51e-09\n", "V_corr= -247.68320\n", "ibin= 1153 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 107.8 127.2 -0.067 -0.005 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.214 1.41e-09\n", "V_corr= -224.99949\n", "ibin= 1154 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 75.7 187.4 -0.061 0.088 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.290 1.84e-09\n", "V_corr= -257.07242\n", "ibin= 1155 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 96.7 150.8 -0.015 -0.005 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.0750 1.21e-09\n", "V_corr= -236.14621\n", "ibin= 1156 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 97.8 135.1 0.055 0.047 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0718 1.40e-09\n", "V_corr= -234.96211\n", "ibin= 1157 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 112.3 136.3 -0.036 -0.011 0.000 0.000 0.320 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.173 1.32e-09\n", "V_corr= -220.47457\n", "ibin= 1158 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 109.9 192.4 0.076 0.078 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 6.08e+03 0.631 8.55e-10\n", "V_corr= -222.90009\n", "ibin= 1159 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 117.0 154.4 -0.061 -0.016 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 8.17e+03 0.0396 7.35e-10\n", "V_corr= -215.78405\n", "ibin= 1160 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 108.6 147.6 -0.123 0.003 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+03 0.419 2.24e-10\n", "V_corr= -224.21055\n", "ibin= 1161 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 118.1 153.7 0.023 0.026 0.000 0.000 0.749 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0912 1.19e-09\n", "V_corr= -214.74045\n", "ibin= 1162 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 111.8 163.2 -0.128 0.027 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 0.356 2.02e-10\n", "V_corr= -220.99391\n", "ibin= 1163 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 121.9 125.5 0.002 0.005 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.217 1.03e-09\n", "V_corr= -210.90424\n", "ibin= 1164 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 104.9 143.9 -0.058 -0.001 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 9.64e+03 -0.0757 6.19e-10\n", "V_corr= -227.95822\n", "ibin= 1165 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 130.3 132.6 -0.065 -0.007 0.000 0.000 0.641 NaN\n", "Ages, Metallicities, Weights:\n", " 2.06e+03 0.152 1.70e-10\n", "V_corr= -202.53488\n", "ibin= 1166 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 112.5 121.2 -0.013 0.025 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.253 8.02e-10\n", "V_corr= -220.29278\n", "ibin= 1167 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 127.8 138.2 -0.037 0.031 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.127 9.45e-10\n", "V_corr= -205.04142\n", "ibin= 1168 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 134.2 169.9 -0.008 0.012 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00420 9.86e-10\n", "V_corr= -198.58544\n", "ibin= 1169 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 124.3 163.9 -0.094 0.040 0.000 0.000 0.351 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.626 1.98e-09\n", "V_corr= -208.51031\n", "ibin= 1170 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 150.4 144.8 0.023 0.007 0.000 0.000 0.284 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.106 7.43e-10\n", "V_corr= -182.38473\n", "ibin= 1171 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 136.0 127.0 0.022 0.040 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.0297 8.34e-10\n", "V_corr= -196.81732\n", "ibin= 1172 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 150.4 189.8 -0.046 -0.036 0.000 0.000 118.117 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0215 8.28e-10\n", "V_corr= -182.39779\n", "ibin= 1173 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1174 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1175 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 143 4.2 41.6 0.001 0.002 0.000 0.000 2.065 NaN\n", "Ages, Metallicities, Weights:\n", " 6.22e+03 -0.761 1.14e-10\n", "V_corr= -328.65363\n", "ibin= 1176 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 28.0 145.8 0.026 0.012 0.000 0.000 0.770 NaN\n", "Ages, Metallicities, Weights:\n", " 3.69e+03 -0.195 1.10e-10\n", "V_corr= -304.77071\n", "ibin= 1177 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 172 -26.1 186.1 0.031 0.050 0.000 0.000 1.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+03 0.608 6.00e-11\n", "V_corr= -358.88137\n", "ibin= 1178 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 318 -24.8 62.7 0.002 0.000 0.000 0.000 1.143 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 -1.12 1.89e-10\n", "V_corr= -357.58945\n", "ibin= 1179 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 -2.3 173.1 0.010 0.060 0.000 0.000 1.273 NaN\n", "Ages, Metallicities, Weights:\n", " 7.04e+03 0.0603 2.66e-10\n", "V_corr= -335.09474\n", "ibin= 1180 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 26.7 114.6 0.036 -0.012 0.000 0.000 1.059 NaN\n", "Ages, Metallicities, Weights:\n", " 2.26e+03 -0.118 8.78e-11\n", "V_corr= -306.13246\n", "ibin= 1181 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 18.7 186.4 0.024 -0.010 0.000 0.000 1.075 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.437 3.87e-10\n", "V_corr= -314.14681\n", "ibin= 1182 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 30.0 197.4 0.018 -0.015 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0673 6.52e-10\n", "V_corr= -302.78170\n", "ibin= 1183 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 -6.5 100.2 -0.004 0.008 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+03 -0.406 7.10e-11\n", "V_corr= -339.28593\n", "ibin= 1184 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 10.4 108.8 0.017 -0.015 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.680 3.40e-10\n", "V_corr= -322.37546\n", "ibin= 1185 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 6.6 145.3 0.027 0.040 0.000 0.000 0.684 NaN\n", "Ages, Metallicities, Weights:\n", " 4.14e+03 0.0277 1.88e-10\n", "V_corr= -326.16425\n", "ibin= 1186 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 14.6 149.2 -0.016 0.051 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 2.34e+03 0.502 1.65e-10\n", "V_corr= -318.16205\n", "ibin= 1187 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 18.2 144.9 -0.023 0.044 0.000 0.000 0.824 NaN\n", "Ages, Metallicities, Weights:\n", " 3.18e+03 0.0444 1.57e-10\n", "V_corr= -314.65658\n", "ibin= 1188 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 13.3 91.5 0.039 0.024 0.000 0.000 1.391 NaN\n", "Ages, Metallicities, Weights:\n", " 4.70e+03 -0.431 1.79e-10\n", "V_corr= -319.51643\n", "ibin= 1189 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 1.1 146.4 -0.027 0.040 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 4.29e+03 -0.0567 2.21e-10\n", "V_corr= -331.67877\n", "ibin= 1190 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 11.4 151.6 0.030 0.030 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 5.84e+03 -0.103 2.96e-10\n", "V_corr= -321.36660\n", "ibin= 1191 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 11.6 173.6 0.001 0.059 0.000 0.000 0.795 NaN\n", "Ages, Metallicities, Weights:\n", " 8.44e+03 0.176 5.34e-10\n", "V_corr= -321.17906\n", "ibin= 1192 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 19.4 153.8 0.024 0.044 0.000 0.000 0.678 NaN\n", "Ages, Metallicities, Weights:\n", " 8.48e+03 -0.0265 4.83e-10\n", "V_corr= -313.36388\n", "ibin= 1193 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 27.5 148.0 0.078 0.052 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0411 9.45e-10\n", "V_corr= -305.34137\n", "ibin= 1194 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 32.0 104.3 -0.027 0.005 0.000 0.000 0.664 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 -0.576 4.41e-10\n", "V_corr= -300.79684\n", "ibin= 1195 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 42.9 151.2 0.038 0.078 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 3.10e+03 0.431 2.93e-10\n", "V_corr= -289.93822\n", "ibin= 1196 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 27.6 132.6 -0.090 -0.023 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.316 7.66e-10\n", "V_corr= -305.24668\n", "ibin= 1197 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 23.0 158.4 -0.012 0.080 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.215 1.24e-09\n", "V_corr= -309.79816\n", "ibin= 1198 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 37.0 112.1 -0.081 -0.057 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.359 7.59e-10\n", "V_corr= -295.76528\n", "ibin= 1199 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 48.5 161.3 0.006 0.004 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 3.42e+03 0.104 3.10e-10\n", "V_corr= -284.27640\n", "ibin= 1200 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 60.0 147.0 0.040 0.012 0.000 0.000 0.364 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 1.15e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -272.79418\n", "ibin= 1201 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 52.0 169.8 -0.019 0.007 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 6.89e+03 0.153 6.78e-10\n", "V_corr= -280.80680\n", "ibin= 1202 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 55.3 137.1 0.015 0.043 0.000 0.000 0.361 NaN\n", "Ages, Metallicities, Weights:\n", " 3.33e+03 0.0680 3.08e-10\n", "V_corr= -277.53421\n", "ibin= 1203 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 43.3 147.3 -0.045 -0.001 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 6.83e+03 -0.164 5.50e-10\n", "V_corr= -289.46003\n", "ibin= 1204 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 62.0 200.2 -0.039 -0.031 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.211 1.81e-09\n", "V_corr= -270.76957\n", "ibin= 1205 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 52.6 169.0 -0.004 -0.040 0.000 0.000 0.293 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.329 1.08e-09\n", "V_corr= -280.18970\n", "ibin= 1206 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 50.0 161.8 0.020 0.133 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0206 1.64e-09\n", "V_corr= -282.85856\n", "ibin= 1207 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 43.6 154.0 -0.012 0.025 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 5.16e+03 0.0991 6.50e-10\n", "V_corr= -289.25610\n", "ibin= 1208 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 64.5 163.1 -0.025 0.032 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.000193 1.85e-09\n", "V_corr= -268.30468\n", "ibin= 1209 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 84.0 157.7 -0.013 0.080 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.116 1.94e-09\n", "V_corr= -248.78440\n", "ibin= 1210 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 56.7 156.0 0.019 0.030 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00573 1.91e-09\n", "V_corr= -276.10772\n", "ibin= 1211 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 233 75.4 182.2 0.044 0.002 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0619 1.96e-09\n", "V_corr= -257.39617\n", "ibin= 1212 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 99.3 165.8 0.049 -0.038 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.0866 1.43e-09\n", "V_corr= -233.53264\n", "ibin= 1213 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 90.6 138.4 -0.012 0.018 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.144 1.61e-09\n", "V_corr= -242.25041\n", "ibin= 1214 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 179 68.8 170.7 -0.091 0.009 0.000 0.000 0.359 NaN\n", "Ages, Metallicities, Weights:\n", " 2.38e+03 0.536 4.53e-10\n", "V_corr= -263.98917\n", "ibin= 1215 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 87.3 174.1 0.060 0.036 0.000 0.000 0.335 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0230 1.77e-09\n", "V_corr= -245.49131\n", "ibin= 1216 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 93.6 145.3 -0.053 0.093 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 -0.0269 1.35e-09\n", "V_corr= -239.20281\n", "ibin= 1217 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 104.1 138.1 -0.038 0.011 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.265 1.46e-09\n", "V_corr= -228.66314\n", "ibin= 1218 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 96.7 158.3 -0.010 0.052 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0413 1.80e-09\n", "V_corr= -236.10590\n", "ibin= 1219 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 112.0 160.6 -0.082 -0.012 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.113 1.66e-09\n", "V_corr= -220.81613\n", "ibin= 1220 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 190 96.2 162.6 -0.026 -0.038 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.188 1.56e-09\n", "V_corr= -236.62922\n", "ibin= 1221 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 108.9 149.7 -0.043 0.021 0.000 0.000 0.337 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.144 1.54e-09\n", "V_corr= -223.90529\n", "ibin= 1222 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 89.0 170.4 0.047 -0.002 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0613 1.62e-09\n", "V_corr= -243.84792\n", "ibin= 1223 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 108.9 155.0 -0.050 0.034 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0141 1.62e-09\n", "V_corr= -223.87047\n", "ibin= 1224 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 104.8 154.7 -0.050 0.006 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+03 0.499 2.62e-10\n", "V_corr= -227.99753\n", "ibin= 1225 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 211 124.3 149.6 -0.048 -0.008 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.121 1.45e-09\n", "V_corr= -208.49607\n", "ibin= 1226 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 104.9 145.2 -0.090 0.054 0.000 0.000 0.356 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 1.32e-09\n", "V_corr= -227.89848\n", "ibin= 1227 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 119.1 151.1 0.030 0.038 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.35e-09\n", "V_corr= -213.75081\n", "ibin= 1228 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 104.5 148.0 -0.015 -0.054 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 2.95e+03 0.00677 2.92e-10\n", "V_corr= -228.29254\n", "ibin= 1229 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 114.9 127.9 -0.068 0.013 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.189 1.18e-09\n", "V_corr= -217.90751\n", "ibin= 1230 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 99.9 153.5 -0.025 -0.045 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0404 1.31e-09\n", "V_corr= -232.91952\n", "ibin= 1231 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 110.2 190.5 -0.105 -0.031 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 9.95e+03 0.131 8.70e-10\n", "V_corr= -222.58988\n", "ibin= 1232 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 110.3 141.9 0.038 -0.039 0.000 0.000 0.624 NaN\n", "Ages, Metallicities, Weights:\n", " 2.75e+03 -0.126 2.07e-10\n", "V_corr= -222.52288\n", "ibin= 1233 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 124.5 152.8 -0.078 0.091 0.000 0.000 0.294 NaN\n", "Ages, Metallicities, Weights:\n", " 4.16e+03 0.480 4.29e-10\n", "V_corr= -208.34449\n", "ibin= 1234 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 125.0 142.6 -0.039 -0.007 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.140 1.02e-09\n", "V_corr= -207.79402\n", "ibin= 1235 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 105.4 166.9 0.001 0.003 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 3.42e+03 0.224 2.83e-10\n", "V_corr= -227.42647\n", "ibin= 1236 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 110 145.2 167.8 -0.103 -0.030 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.0420 7.18e-10\n", "V_corr= -187.60374\n", "ibin= 1237 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 124.6 167.8 0.007 0.020 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.127 9.24e-10\n", "V_corr= -208.23658\n", "ibin= 1238 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 127.9 135.2 -0.006 -0.018 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.474 1.75e-10\n", "V_corr= -204.86404\n", "ibin= 1239 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 124.0 162.3 -0.015 -0.055 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0322 1.00e-09\n", "V_corr= -208.81603\n", "ibin= 1240 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 126.2 156.5 -0.061 0.013 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.84e+04 -0.0593 8.17e-10\n", "V_corr= -206.59472\n", "ibin= 1241 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 99.4 120.3 0.033 -0.021 0.000 0.000 0.720 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.215 7.18e-10\n", "V_corr= -233.39615\n", "ibin= 1242 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1243 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1244 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -1.7 130.3 0.026 0.015 0.000 0.000 1.191 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.361 3.88e-10\n", "V_corr= -334.53877\n", "ibin= 1245 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 7.2 183.2 0.032 -0.005 0.000 0.000 1.177 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 4.52e-10\n", "V_corr= -325.59167\n", "ibin= 1246 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -9.9 134.2 0.027 0.060 0.000 0.000 0.924 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 -0.549 2.20e-10\n", "V_corr= -342.68412\n", "ibin= 1247 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 174 -23.1 61.1 -0.001 0.008 0.000 0.000 1.437 NaN\n", "Ages, Metallicities, Weights:\n", " 2.43e+03 -0.575 6.25e-11\n", "V_corr= -355.89290\n", "ibin= 1248 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 165 -39.0 28.9 0.000 -0.002 0.000 0.000 0.843 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 -1.12 2.27e-10\n", "V_corr= -371.80513\n", "ibin= 1249 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 332 20.0 89.2 -0.013 0.025 0.000 0.000 0.996 NaN\n", "Ages, Metallicities, Weights:\n", " 5.41e+03 -0.592 1.42e-10\n", "V_corr= -312.77155\n", "ibin= 1250 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 49.6 168.7 0.045 0.008 0.000 0.000 0.799 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.643 3.20e-10\n", "V_corr= -283.19603\n", "ibin= 1251 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 4.0 171.6 0.044 0.013 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 3.73e+03 -0.0817 1.59e-10\n", "V_corr= -328.85134\n", "ibin= 1252 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 251 48.6 49.5 -0.014 0.002 0.000 0.000 1.107 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.911 3.34e-10\n", "V_corr= -284.25661\n", "ibin= 1253 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 246 -12.0 60.0 0.002 0.007 0.000 0.000 0.795 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.803 2.57e-10\n", "V_corr= -344.76006\n", "ibin= 1254 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 33.1 150.2 0.052 -0.014 0.000 0.000 0.921 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.399 5.57e-10\n", "V_corr= -299.74667\n", "ibin= 1255 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -24.1 74.7 0.003 0.008 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+03 -0.444 5.61e-11\n", "V_corr= -356.87109\n", "ibin= 1256 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 60.0 201.5 0.055 -0.040 0.000 0.000 0.997 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.175 6.55e-10\n", "V_corr= -272.82051\n", "ibin= 1257 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 11.8 136.8 0.005 0.054 0.000 0.000 0.888 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 0.193 1.25e-10\n", "V_corr= -320.96378\n", "ibin= 1258 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 17.4 176.2 0.009 0.014 0.000 0.000 0.677 NaN\n", "Ages, Metallicities, Weights:\n", " 2.64e+03 0.262 1.85e-10\n", "V_corr= -315.40295\n", "ibin= 1259 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 28.6 171.6 0.066 0.119 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0791 8.89e-10\n", "V_corr= -304.19646\n", "ibin= 1260 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -1.8 134.8 0.020 0.004 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 3.70e+03 -0.0280 2.25e-10\n", "V_corr= -334.56379\n", "ibin= 1261 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 39.8 157.3 0.033 -0.022 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 2.87e+03 0.275 2.31e-10\n", "V_corr= -293.00572\n", "ibin= 1262 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 24.1 183.5 0.021 0.061 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 3.81e+03 0.151 2.72e-10\n", "V_corr= -308.68665\n", "ibin= 1263 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 26.5 127.4 -0.084 0.041 0.000 0.000 0.826 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 -0.190 6.37e-10\n", "V_corr= -306.31215\n", "ibin= 1264 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -7.6 116.5 0.006 0.036 0.000 0.000 0.889 NaN\n", "Ages, Metallicities, Weights:\n", " 3.40e+03 0.0121 2.49e-10\n", "V_corr= -340.45649\n", "ibin= 1265 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 29.6 107.1 0.082 0.023 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.457 8.07e-10\n", "V_corr= -303.18932\n", "ibin= 1266 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 11.0 122.5 0.076 0.038 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.433 8.20e-10\n", "V_corr= -321.81045\n", "ibin= 1267 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 17.7 163.2 0.017 0.081 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 3.98e+03 0.135 3.32e-10\n", "V_corr= -315.15566\n", "ibin= 1268 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 37.0 144.6 0.037 0.069 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0150 1.28e-09\n", "V_corr= -295.76929\n", "ibin= 1269 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 231 48.7 136.1 -0.032 0.001 0.000 0.000 0.906 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.586 7.18e-10\n", "V_corr= -284.06719\n", "ibin= 1270 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 43.0 170.7 -0.020 -0.030 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+04 -0.138 1.30e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -289.78163\n", "ibin= 1271 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 29.6 192.0 -0.039 -0.024 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.142 1.38e-09\n", "V_corr= -303.18696\n", "ibin= 1272 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 58.6 144.2 0.003 0.013 0.000 0.000 0.662 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.113 1.46e-09\n", "V_corr= -274.18026\n", "ibin= 1273 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 56.6 178.5 -0.001 -0.049 0.000 0.000 0.361 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 1.65e-09\n", "V_corr= -276.22643\n", "ibin= 1274 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 49.9 149.8 0.036 -0.030 0.000 0.000 0.291 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.64e-09\n", "V_corr= -282.88058\n", "ibin= 1275 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 62.8 188.0 0.008 0.015 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.127 1.99e-09\n", "V_corr= -270.04293\n", "ibin= 1276 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 60.8 112.6 0.012 0.057 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.248 1.50e-09\n", "V_corr= -272.04611\n", "ibin= 1277 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 70.6 144.6 -0.015 -0.003 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 -0.106 1.30e-09\n", "V_corr= -262.19412\n", "ibin= 1278 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 69.7 169.9 -0.056 0.044 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+04 0.242 1.64e-09\n", "V_corr= -263.11057\n", "ibin= 1279 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 82.5 190.7 -0.040 0.106 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.235 2.18e-09\n", "V_corr= -250.27538\n", "ibin= 1280 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 70.6 174.5 0.034 0.035 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.120 1.30e-09\n", "V_corr= -262.24277\n", "ibin= 1281 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 87.7 139.7 -0.056 -0.009 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 1.68e-09\n", "V_corr= -245.09334\n", "ibin= 1282 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 84.5 155.1 -0.074 0.025 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 0.142 1.95e-09\n", "V_corr= -248.34721\n", "ibin= 1283 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 95.6 155.7 -0.045 0.027 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0316 1.97e-09\n", "V_corr= -237.22417\n", "ibin= 1284 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 77.3 170.0 -0.008 0.049 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 2.07e-09\n", "V_corr= -255.52396\n", "ibin= 1285 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 91.7 145.6 0.035 0.093 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 0.138 1.80e-09\n", "V_corr= -241.12467\n", "ibin= 1286 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 94.9 131.9 -0.026 0.029 0.000 0.000 0.597 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.180 1.10e-09\n", "V_corr= -237.86742\n", "ibin= 1287 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 97.3 168.5 -0.010 0.012 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 0.0168 1.82e-09\n", "V_corr= -235.52173\n", "ibin= 1288 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 97.3 151.6 -0.021 0.032 0.000 0.000 0.842 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.0214 1.26e-09\n", "V_corr= -235.50856\n", "ibin= 1289 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 90.2 163.0 -0.042 0.055 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 8.24e+03 0.149 1.07e-09\n", "V_corr= -242.61771\n", "ibin= 1290 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 87.0 176.5 -0.024 -0.063 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0437 1.84e-09\n", "V_corr= -245.83661\n", "ibin= 1291 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 73.1 161.6 0.013 -0.000 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00894 1.72e-09\n", "V_corr= -259.67596\n", "ibin= 1292 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 255 108.7 169.4 -0.014 0.102 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.195 1.74e-09\n", "V_corr= -224.09871\n", "ibin= 1293 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 107.2 181.7 -0.008 0.075 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.682 4.05e-09\n", "V_corr= -225.56682\n", "ibin= 1294 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 113.9 168.5 -0.025 -0.006 0.000 0.000 0.379 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0867 1.68e-09\n", "V_corr= -218.86924\n", "ibin= 1295 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 102.0 160.5 0.027 -0.012 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+04 -0.0310 1.06e-09\n", "V_corr= -230.78332\n", "ibin= 1296 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 84.8 168.8 0.007 0.081 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.143 1.58e-09\n", "V_corr= -248.04260\n", "ibin= 1297 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 116.3 167.1 -0.024 -0.057 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0278 1.44e-09\n", "V_corr= -216.54988\n", "ibin= 1298 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 113.5 151.3 0.020 0.035 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.104 1.41e-09\n", "V_corr= -219.33715\n", "ibin= 1299 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 123.6 149.3 0.064 0.058 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.140 1.17e-09\n", "V_corr= -209.18007\n", "ibin= 1300 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 98.8 174.7 -0.075 0.024 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.189 9.24e-10\n", "V_corr= -233.98033\n", "ibin= 1301 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 130.7 123.8 -0.011 0.032 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.119 1.07e-09\n", "V_corr= -202.13295\n", "ibin= 1302 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 126.2 116.1 -0.029 0.042 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.129 1.01e-09\n", "V_corr= -206.60630\n", "ibin= 1303 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 96.2 135.4 0.028 0.032 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 3.99e+03 0.110 3.08e-10\n", "V_corr= -236.64967\n", "ibin= 1304 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 95.2 96.1 -0.011 -0.002 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+03 -0.0200 1.41e-10\n", "V_corr= -237.65816\n", "ibin= 1305 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 129.5 141.6 0.012 0.072 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0460 9.71e-10\n", "V_corr= -203.34569\n", "ibin= 1306 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 119.3 158.5 0.010 -0.059 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.234 7.97e-10\n", "V_corr= -213.50899\n", "ibin= 1307 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 126.1 117.6 -0.021 0.063 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.314 7.72e-10\n", "V_corr= -206.71054\n", "ibin= 1308 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 136.8 161.8 0.032 0.009 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 2.12e+03 0.522 2.07e-10\n", "V_corr= -196.00370\n", "ibin= 1309 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 110.1 154.5 -0.000 -0.010 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+03 0.600 1.26e-10\n", "V_corr= -222.72011\n", "ibin= 1310 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 141.1 156.6 -0.027 0.000 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 8.00e+03 0.115 4.97e-10\n", "V_corr= -191.73775\n", "ibin= 1311 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1312 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1313 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -6.9 111.0 0.042 -0.002 0.000 0.000 0.911 NaN\n", "Ages, Metallicities, Weights:\n", " 1.43e+04 -0.866 2.30e-10\n", "V_corr= -339.66828\n", "ibin= 1314 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 18.0 129.2 0.021 0.076 0.000 0.000 1.128 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 -0.128 8.29e-11\n", "V_corr= -314.79680\n", "ibin= 1315 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 72.1 219.4 0.060 0.008 0.000 0.000 3.774 NaN\n", "Ages, Metallicities, Weights:\n", " 609. 0.537 3.14e-11\n", "V_corr= -260.66777\n", "ibin= 1316 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 33.5 100.1 0.006 0.031 0.000 0.000 1.123 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.572 2.47e-10\n", "V_corr= -299.35350\n", "ibin= 1317 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 70 18.7 128.9 0.005 0.023 0.000 0.000 2.062 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.469 4.25e-10\n", "V_corr= -314.07515\n", "ibin= 1318 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 16.6 89.5 -0.003 0.007 0.000 0.000 1.102 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+04 -0.708 2.92e-10\n", "V_corr= -316.20788\n", "ibin= 1319 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 68.5 217.5 0.006 -0.052 0.000 0.000 1.039 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.245 6.07e-10\n", "V_corr= -264.29757\n", "ibin= 1320 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 132 28.9 104.8 -0.036 0.022 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 2.34e+03 -0.515 7.75e-11\n", "V_corr= -303.95452\n", "ibin= 1321 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 9.6 113.4 -0.021 -0.025 0.000 0.000 1.161 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.662 4.27e-10\n", "V_corr= -323.18142\n", "ibin= 1322 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -3.9 95.3 -0.031 -0.016 0.000 0.000 1.001 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.446 5.35e-10\n", "V_corr= -336.69794\n", "ibin= 1323 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 25.0 154.1 0.056 -0.005 0.000 0.000 0.706 NaN\n", "Ages, Metallicities, Weights:\n", " 5.14e+03 -0.115 2.44e-10\n", "V_corr= -307.81949\n", "ibin= 1324 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 185 4.5 140.3 0.043 0.078 0.000 0.000 0.810 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+03 0.278 7.57e-11\n", "V_corr= -328.27298\n", "ibin= 1325 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 14.8 103.4 0.002 0.011 0.000 0.000 0.841 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 -0.247 1.07e-10\n", "V_corr= -318.04370\n", "ibin= 1326 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 3.9 123.7 -0.029 -0.005 0.000 0.000 0.662 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.402 6.50e-10\n", "V_corr= -328.92353\n", "ibin= 1327 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 58.5 150.8 0.042 0.004 0.000 0.000 0.796 NaN\n", "Ages, Metallicities, Weights:\n", " 4.79e+03 -0.290 2.37e-10\n", "V_corr= -274.35731\n", "ibin= 1328 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -27.3 219.5 -0.104 0.100 0.000 0.000 0.745 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.306 1.13e-09\n", "V_corr= -360.15052\n", "ibin= 1329 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 4.8 130.7 0.053 0.070 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 -0.0605 5.68e-10\n", "V_corr= -327.98190\n", "ibin= 1330 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 37.6 82.4 -0.025 0.018 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.687 5.34e-10\n", "V_corr= -295.24862\n", "ibin= 1331 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 25.7 163.8 -0.039 -0.021 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.146 9.92e-10\n", "V_corr= -307.12301\n", "ibin= 1332 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 23.4 115.8 -0.037 0.008 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 2.79e+03 -0.164 1.87e-10\n", "V_corr= -309.37744\n", "ibin= 1333 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 1.5 134.1 0.003 0.018 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 6.37e+03 -0.138 4.20e-10\n", "V_corr= -331.28983\n", "ibin= 1334 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 34.1 144.0 -0.001 0.030 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.275 1.04e-09\n", "V_corr= -298.71721\n", "ibin= 1335 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 19.5 164.9 0.034 0.088 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0448 1.16e-09\n", "V_corr= -313.33407\n", "ibin= 1336 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 27.5 180.7 -0.034 0.010 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.140 1.40e-09\n", "V_corr= -305.31944\n", "ibin= 1337 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 31.1 149.2 -0.018 0.049 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 1.13e-09\n", "V_corr= -301.68028\n", "ibin= 1338 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 28.5 197.1 -0.019 0.034 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 0.258 1.46e-09\n", "V_corr= -304.28175\n", "ibin= 1339 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 41.6 168.2 0.023 0.011 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0689 1.43e-09\n", "V_corr= -291.25335\n", "ibin= 1340 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 59.0 165.0 0.002 -0.019 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.339 1.28e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -273.79441\n", "ibin= 1341 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 47.2 156.0 -0.052 0.090 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 7.78e+03 0.133 9.04e-10\n", "V_corr= -285.60942\n", "ibin= 1342 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 59.7 158.3 0.002 -0.038 0.000 0.000 0.830 NaN\n", "Ages, Metallicities, Weights:\n", " 6.77e+03 -0.0173 7.98e-10\n", "V_corr= -273.08683\n", "ibin= 1343 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 48.4 176.7 -0.064 0.022 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -0.0383 1.21e-09\n", "V_corr= -284.40812\n", "ibin= 1344 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 70.3 186.7 0.034 0.054 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.252 2.27e-09\n", "V_corr= -262.46932\n", "ibin= 1345 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 50.2 163.0 -0.110 0.121 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.108 2.08e-09\n", "V_corr= -282.61710\n", "ibin= 1346 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 76.9 151.9 -0.118 0.022 0.000 0.000 0.364 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0644 2.02e-09\n", "V_corr= -255.90911\n", "ibin= 1347 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 68.9 174.7 -0.022 0.007 0.000 0.000 0.548 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.145 2.34e-09\n", "V_corr= -263.93493\n", "ibin= 1348 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 77.9 179.3 -0.002 0.014 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0841 2.32e-09\n", "V_corr= -254.91429\n", "ibin= 1349 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 80.4 165.2 -0.059 0.019 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.156 1.99e-09\n", "V_corr= -252.37205\n", "ibin= 1350 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 75.7 157.6 -0.065 0.076 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 0.0835 2.21e-09\n", "V_corr= -257.09160\n", "ibin= 1351 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 73.5 163.2 0.076 -0.033 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0799 2.17e-09\n", "V_corr= -259.35312\n", "ibin= 1352 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 92.4 140.8 0.000 0.088 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0342 2.03e-09\n", "V_corr= -240.39805\n", "ibin= 1353 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 82.1 166.7 -0.043 0.051 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0290 2.21e-09\n", "V_corr= -250.70644\n", "ibin= 1354 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 102.4 175.2 -0.043 0.019 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 6.44e+03 0.258 1.08e-09\n", "V_corr= -230.42650\n", "ibin= 1355 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 60.6 145.1 -0.006 0.033 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 -0.175 1.27e-09\n", "V_corr= -272.17155\n", "ibin= 1356 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 81.0 167.6 0.027 0.002 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0363 2.03e-09\n", "V_corr= -251.82313\n", "ibin= 1357 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 93.0 141.0 0.034 0.051 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.153 1.77e-09\n", "V_corr= -239.80899\n", "ibin= 1358 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 73.0 205.6 -0.073 0.070 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.388 2.48e-09\n", "V_corr= -259.78513\n", "ibin= 1359 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 98.8 166.4 -0.031 -0.018 0.000 0.000 0.659 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0246 1.87e-09\n", "V_corr= -234.02020\n", "ibin= 1360 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 104.4 173.0 -0.025 0.018 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0262 1.78e-09\n", "V_corr= -228.41389\n", "ibin= 1361 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 99.2 151.9 -0.001 -0.010 0.000 0.000 0.252 NaN\n", "Ages, Metallicities, Weights:\n", " 4.85e+03 0.0648 5.57e-10\n", "V_corr= -233.61238\n", "ibin= 1362 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 260 102.3 149.9 0.032 0.073 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00599 1.54e-09\n", "V_corr= -230.50396\n", "ibin= 1363 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 104.4 160.6 -0.016 0.023 0.000 0.000 0.328 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.108 1.04e-09\n", "V_corr= -228.36227\n", "ibin= 1364 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 93.8 210.3 -0.044 0.071 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.386 1.96e-09\n", "V_corr= -239.04422\n", "ibin= 1365 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 89.5 141.7 -0.003 0.121 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0242 1.40e-09\n", "V_corr= -243.31823\n", "ibin= 1366 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 113.2 140.8 0.044 0.068 0.000 0.000 0.664 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0289 1.41e-09\n", "V_corr= -219.63207\n", "ibin= 1367 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 90.9 191.3 -0.033 0.057 0.000 0.000 0.362 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 0.590 2.40e-09\n", "V_corr= -241.93826\n", "ibin= 1368 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 121.8 144.1 0.065 0.018 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0964 1.25e-09\n", "V_corr= -210.96980\n", "ibin= 1369 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 110.8 174.6 -0.018 -0.011 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 7.72e+03 0.596 7.89e-10\n", "V_corr= -222.00818\n", "ibin= 1370 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 106.4 120.8 0.037 0.040 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 5.90e+03 -0.0891 4.25e-10\n", "V_corr= -226.41127\n", "ibin= 1371 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 94.7 172.5 0.008 0.006 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 3.94e+03 0.516 4.65e-10\n", "V_corr= -238.11989\n", "ibin= 1372 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 96.6 122.5 -0.013 -0.004 0.000 0.000 0.328 NaN\n", "Ages, Metallicities, Weights:\n", " 7.92e+03 -0.155 4.68e-10\n", "V_corr= -236.24031\n", "ibin= 1373 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 99.2 154.4 -0.019 0.066 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 6.32e+03 0.152 4.69e-10\n", "V_corr= -233.64094\n", "ibin= 1374 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 141.9 156.0 -0.045 0.079 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.181 8.70e-10\n", "V_corr= -190.86784\n", "ibin= 1375 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 130.1 144.6 -0.070 0.065 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 6.59e+03 0.0967 4.59e-10\n", "V_corr= -202.66836\n", "ibin= 1376 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 110.8 156.7 -0.038 0.018 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.0981 8.47e-10\n", "V_corr= -222.04338\n", "ibin= 1377 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 95.9 134.0 0.015 0.052 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+03 0.540 1.59e-10\n", "V_corr= -236.87922\n", "ibin= 1378 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 118.7 146.5 0.011 -0.045 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 -0.179 5.78e-10\n", "V_corr= -214.14092\n", "ibin= 1379 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 137.8 127.7 -0.077 0.002 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.152 7.78e-10\n", "V_corr= -195.02439\n", "ibin= 1380 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1381 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1382 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 2.6 126.2 0.012 0.027 0.000 0.000 1.120 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.221 5.07e-11\n", "V_corr= -330.17672\n", "ibin= 1383 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 -26.9 223.2 0.061 -0.008 0.000 0.000 1.395 NaN\n", "Ages, Metallicities, Weights:\n", " 3.02e+03 0.181 1.31e-10\n", "V_corr= -359.66392\n", "ibin= 1384 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -4.2 109.2 -0.003 0.020 0.000 0.000 0.747 NaN\n", "Ages, Metallicities, Weights:\n", " 2.06e+03 -0.184 7.07e-11\n", "V_corr= -337.02663\n", "ibin= 1385 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 11.6 156.5 -0.011 0.038 0.000 0.000 0.834 NaN\n", "Ages, Metallicities, Weights:\n", " 5.91e+03 -0.0631 2.20e-10\n", "V_corr= -321.20488\n", "ibin= 1386 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 28.8 167.0 0.037 0.047 0.000 0.000 1.091 NaN\n", "Ages, Metallicities, Weights:\n", " 8.52e+03 0.0132 3.30e-10\n", "V_corr= -304.00427\n", "ibin= 1387 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 104 6.6 147.3 0.020 0.002 0.000 0.000 1.111 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+03 0.0764 8.36e-11\n", "V_corr= -326.25100\n", "ibin= 1388 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 207 9.9 210.8 0.088 0.068 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 8.36e+03 0.155 4.01e-10\n", "V_corr= -322.88148\n", "ibin= 1389 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 56.2 143.4 0.041 0.069 0.000 0.000 0.911 NaN\n", "Ages, Metallicities, Weights:\n", " 8.37e+03 -0.150 3.02e-10\n", "V_corr= -276.57990\n", "ibin= 1390 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 2.6 108.2 0.012 0.003 0.000 0.000 0.862 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.579 4.08e-10\n", "V_corr= -330.23139\n", "ibin= 1391 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 32.7 78.7 0.004 0.012 0.000 0.000 1.177 NaN\n", "Ages, Metallicities, Weights:\n", " 8.64e+03 -0.848 2.18e-10\n", "V_corr= -300.11789\n", "ibin= 1392 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 208 -3.3 102.9 -0.001 0.025 0.000 0.000 1.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+03 0.0246 5.62e-11\n", "V_corr= -336.06134\n", "ibin= 1393 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 7.8 133.0 -0.031 0.066 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.602 4.40e-10\n", "V_corr= -324.98292\n", "ibin= 1394 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 13.8 153.1 0.005 0.051 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.194 7.25e-10\n", "V_corr= -318.99623\n", "ibin= 1395 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 9.5 111.4 0.009 0.008 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.466 6.38e-10\n", "V_corr= -323.35072\n", "ibin= 1396 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -12.1 164.0 0.062 0.022 0.000 0.000 0.899 NaN\n", "Ages, Metallicities, Weights:\n", " 2.59e+03 0.455 2.38e-10\n", "V_corr= -344.86596\n", "ibin= 1397 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -18.3 107.3 -0.020 0.025 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.455 5.88e-10\n", "V_corr= -351.14164\n", "ibin= 1398 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 11.7 128.3 0.032 0.045 0.000 0.000 0.949 NaN\n", "Ages, Metallicities, Weights:\n", " 4.15e+03 -0.0717 2.65e-10\n", "V_corr= -321.11855\n", "ibin= 1399 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 13.3 110.7 -0.024 -0.010 0.000 0.000 0.805 NaN\n", "Ages, Metallicities, Weights:\n", " 1.84e+03 -0.208 1.17e-10\n", "V_corr= -319.50340\n", "ibin= 1400 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 12.4 112.4 0.005 0.049 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.540 7.00e-10\n", "V_corr= -320.41334\n", "ibin= 1401 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 6.9 128.0 0.065 0.048 0.000 0.000 0.747 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 9.34e-10\n", "V_corr= -325.89079\n", "ibin= 1402 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 27.6 148.5 0.081 0.055 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0615 1.15e-09\n", "V_corr= -305.20005\n", "ibin= 1403 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 36.1 128.3 -0.045 0.017 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 -0.175 8.37e-10\n", "V_corr= -296.73013\n", "ibin= 1404 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 33.6 162.8 -0.034 0.017 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.250 1.11e-09\n", "V_corr= -299.21338\n", "ibin= 1405 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 14.3 193.7 0.029 0.020 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 3.82e+03 0.320 4.07e-10\n", "V_corr= -318.47753\n", "ibin= 1406 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 20.8 132.8 -0.014 0.036 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.136 1.26e-09\n", "V_corr= -311.96554\n", "ibin= 1407 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 18.5 125.0 -0.011 0.068 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.43e+04 -0.212 9.60e-10\n", "V_corr= -314.33295\n", "ibin= 1408 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 34.9 165.6 0.009 0.023 0.000 0.000 0.930 NaN\n", "Ages, Metallicities, Weights:\n", " 7.06e+03 0.0233 7.24e-10\n", "V_corr= -297.87338\n", "ibin= 1409 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 30.5 183.2 -0.049 0.051 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 0.124 1.25e-09\n", "V_corr= -302.29067\n", "ibin= 1410 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 71.8 183.8 -0.001 -0.068 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 9.19e+03 -0.0401 1.02e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -261.02662\n", "ibin= 1411 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 49.9 167.7 0.018 0.105 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 6.93e+03 0.347 1.05e-09\n", "V_corr= -282.95419\n", "ibin= 1412 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 88.5 138.6 -0.008 0.070 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.74e-09\n", "V_corr= -244.29639\n", "ibin= 1413 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 65.1 195.4 -0.047 0.032 0.000 0.000 0.714 NaN\n", "Ages, Metallicities, Weights:\n", " 9.33e+03 0.137 1.34e-09\n", "V_corr= -267.69766\n", "ibin= 1414 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 74.6 174.8 -0.042 0.051 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 0.114 1.91e-09\n", "V_corr= -258.20069\n", "ibin= 1415 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 69.7 161.2 -0.016 0.004 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.136 2.10e-09\n", "V_corr= -263.09863\n", "ibin= 1416 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 68.1 175.4 -0.029 0.039 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0544 2.43e-09\n", "V_corr= -264.68115\n", "ibin= 1417 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 78.1 155.7 0.016 0.035 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.117 2.23e-09\n", "V_corr= -254.67440\n", "ibin= 1418 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 66.7 174.5 -0.068 0.062 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00502 2.24e-09\n", "V_corr= -266.11312\n", "ibin= 1419 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 78.1 151.0 -0.039 0.083 0.000 0.000 0.969 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0280 2.29e-09\n", "V_corr= -254.70712\n", "ibin= 1420 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 83.3 167.8 0.022 0.034 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0137 2.37e-09\n", "V_corr= -249.50715\n", "ibin= 1421 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 83.1 131.7 -0.047 0.063 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0607 2.21e-09\n", "V_corr= -249.73946\n", "ibin= 1422 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 88.3 136.5 -0.036 0.066 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 0.0429 1.51e-09\n", "V_corr= -244.54048\n", "ibin= 1423 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 91.2 172.4 0.017 0.035 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00896 2.27e-09\n", "V_corr= -241.63756\n", "ibin= 1424 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 94.9 174.5 0.004 0.022 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 0.127 2.12e-09\n", "V_corr= -237.95266\n", "ibin= 1425 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 94.3 153.3 -0.030 0.046 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0283 2.04e-09\n", "V_corr= -238.53115\n", "ibin= 1426 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 92.6 150.7 0.003 0.020 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0636 2.13e-09\n", "V_corr= -240.18312\n", "ibin= 1427 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 83.6 165.0 -0.041 -0.007 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 9.10e+03 0.117 1.25e-09\n", "V_corr= -249.23115\n", "ibin= 1428 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 92.6 164.0 0.013 -0.044 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.108 1.80e-09\n", "V_corr= -240.17682\n", "ibin= 1429 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 81.1 143.2 -0.044 0.067 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0792 1.72e-09\n", "V_corr= -251.74477\n", "ibin= 1430 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 97.9 153.0 -0.036 0.064 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 0.212 1.94e-09\n", "V_corr= -234.86552\n", "ibin= 1431 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 99.5 147.4 -0.043 0.037 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0426 1.65e-09\n", "V_corr= -233.26575\n", "ibin= 1432 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 85.6 162.2 -0.035 0.058 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0563 1.51e-09\n", "V_corr= -247.22027\n", "ibin= 1433 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 89.8 148.0 0.002 0.049 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0806 1.43e-09\n", "V_corr= -242.99625\n", "ibin= 1434 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 112.4 144.7 0.006 0.004 0.000 0.000 0.382 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.0822 1.19e-09\n", "V_corr= -220.37966\n", "ibin= 1435 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 111.5 122.2 -0.005 0.052 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.117 1.22e-09\n", "V_corr= -221.32631\n", "ibin= 1436 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 101.8 178.5 -0.034 0.025 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.136 1.53e-09\n", "V_corr= -230.98519\n", "ibin= 1437 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 116.4 139.9 0.004 0.093 0.000 0.000 0.420 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0759 1.24e-09\n", "V_corr= -216.37099\n", "ibin= 1438 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 101.3 166.1 0.027 0.064 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 0.00379 1.23e-09\n", "V_corr= -231.52335\n", "ibin= 1439 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 203 82.7 184.7 0.015 0.103 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.556 2.13e-09\n", "V_corr= -250.14088\n", "ibin= 1440 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 102.6 169.1 -0.023 -0.006 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0260 1.26e-09\n", "V_corr= -230.18421\n", "ibin= 1441 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 96.5 109.1 -0.012 0.035 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 2.49e+03 -0.120 1.80e-10\n", "V_corr= -236.26916\n", "ibin= 1442 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 133.2 152.3 0.021 0.063 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 0.157 1.04e-09\n", "V_corr= -199.62776\n", "ibin= 1443 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 127.3 154.7 -0.038 0.060 0.000 0.000 0.267 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0808 1.05e-09\n", "V_corr= -205.46758\n", "ibin= 1444 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 110.4 150.7 -0.053 0.045 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+03 0.644 1.59e-10\n", "V_corr= -222.44641\n", "ibin= 1445 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 134.4 157.8 -0.062 0.036 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 2.74e+03 0.431 2.40e-10\n", "V_corr= -198.36799\n", "ibin= 1446 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 123.7 143.5 -0.077 0.039 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+04 -0.0761 6.94e-10\n", "V_corr= -209.07231\n", "ibin= 1447 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 133.9 165.1 -0.050 -0.030 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 0.0972 8.07e-10\n", "V_corr= -198.89151\n", "ibin= 1448 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 142.6 146.7 -0.044 -0.029 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0616 8.49e-10\n", "V_corr= -190.24552\n", "ibin= 1449 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1450 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1451 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -79.7 181.2 0.070 -0.005 0.000 0.000 1.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+03 0.489 6.97e-11\n", "V_corr= -412.48624\n", "ibin= 1452 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -32.7 190.6 0.057 -0.056 0.000 0.000 2.355 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+03 0.269 5.00e-11\n", "V_corr= -365.48728\n", "ibin= 1453 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 325 -30.4 75.7 -0.001 0.011 0.000 0.000 1.147 NaN\n", "Ages, Metallicities, Weights:\n", " 2.73e+03 -0.721 6.69e-11\n", "V_corr= -363.19076\n", "ibin= 1454 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 -65.4 178.3 -0.015 -0.022 0.000 0.000 1.939 NaN\n", "Ages, Metallicities, Weights:\n", " 2.31e+03 -0.0415 9.86e-11\n", "V_corr= -398.17251\n", "ibin= 1455 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 1.5 140.0 0.001 0.018 0.000 0.000 1.782 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 5.64e-10\n", "V_corr= -331.35784\n", "ibin= 1456 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 288 2.9 76.0 0.001 0.017 0.000 0.000 1.056 NaN\n", "Ages, Metallicities, Weights:\n", " 2.73e+03 -0.852 7.35e-11\n", "V_corr= -329.85976\n", "ibin= 1457 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 141 -7.0 126.3 -0.024 0.049 0.000 0.000 0.842 NaN\n", "Ages, Metallicities, Weights:\n", " 4.04e+03 -0.203 1.64e-10\n", "V_corr= -339.76614\n", "ibin= 1458 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 2.0 132.1 -0.005 0.075 0.000 0.000 0.921 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.322 5.56e-10\n", "V_corr= -330.83418\n", "ibin= 1459 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 10.5 160.9 0.050 0.014 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 4.34e+03 -0.0716 2.09e-10\n", "V_corr= -322.26501\n", "ibin= 1460 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 11.7 106.5 -0.004 0.031 0.000 0.000 0.664 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.410 5.73e-10\n", "V_corr= -321.12548\n", "ibin= 1461 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -6.1 113.8 0.053 0.028 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+03 -0.0734 8.06e-11\n", "V_corr= -338.87235\n", "ibin= 1462 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 2.5 109.0 -0.004 0.001 0.000 0.000 1.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+03 0.131 1.08e-10\n", "V_corr= -330.33354\n", "ibin= 1463 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 1.5 137.8 0.037 0.012 0.000 0.000 0.989 NaN\n", "Ages, Metallicities, Weights:\n", " 1.76e+03 0.220 1.21e-10\n", "V_corr= -331.30338\n", "ibin= 1464 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 86 3.8 101.3 0.018 0.041 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 5.44e+03 -0.193 2.88e-10\n", "V_corr= -329.01468\n", "ibin= 1465 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 27.9 123.9 0.037 -0.002 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.438 5.75e-10\n", "V_corr= -304.94451\n", "ibin= 1466 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 73 6.2 132.8 -0.040 0.085 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.318 8.25e-10\n", "V_corr= -326.57184\n", "ibin= 1467 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 16.2 160.6 0.016 0.157 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00389 9.81e-10\n", "V_corr= -316.56235\n", "ibin= 1468 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 16.7 166.5 0.037 -0.055 0.000 0.000 0.765 NaN\n", "Ages, Metallicities, Weights:\n", " 2.55e+03 0.0742 2.05e-10\n", "V_corr= -316.05904\n", "ibin= 1469 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 20.1 140.5 -0.028 -0.036 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 2.15e+03 0.0763 1.80e-10\n", "V_corr= -312.72044\n", "ibin= 1470 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -12.4 150.6 -0.058 0.078 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0587 1.12e-09\n", "V_corr= -345.19732\n", "ibin= 1471 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 12.9 121.7 -0.030 -0.018 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 4.75e+03 -0.0588 3.89e-10\n", "V_corr= -319.93214\n", "ibin= 1472 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 35.8 109.2 -0.023 0.042 0.000 0.000 0.936 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.459 9.24e-10\n", "V_corr= -297.01683\n", "ibin= 1473 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 6.4 192.7 -0.042 0.067 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.243 1.59e-09\n", "V_corr= -326.42159\n", "ibin= 1474 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 15.3 159.6 -0.063 0.033 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00271 1.40e-09\n", "V_corr= -317.48585\n", "ibin= 1475 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 44.7 186.0 -0.030 0.063 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 4.90e+03 0.342 5.81e-10\n", "V_corr= -288.09946\n", "ibin= 1476 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 41.0 130.3 -0.053 0.014 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.165 1.48e-09\n", "V_corr= -291.77194\n", "ibin= 1477 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 31.6 156.8 -0.032 0.022 0.000 0.000 0.785 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0803 1.60e-09\n", "V_corr= -301.24470\n", "ibin= 1478 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 47.8 130.6 -0.053 0.027 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.198 1.58e-09\n", "V_corr= -285.04250\n", "ibin= 1479 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 49.3 184.5 -0.045 0.012 0.000 0.000 0.714 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.108 2.10e-09\n", "V_corr= -283.50886\n", "ibin= 1480 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 50.8 138.4 0.019 0.039 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 -0.262 1.59e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -282.02798\n", "ibin= 1481 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 73.6 156.7 0.000 0.065 0.000 0.000 0.339 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0749 2.01e-09\n", "V_corr= -259.16798\n", "ibin= 1482 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 64.3 158.6 0.030 0.028 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0729 2.14e-09\n", "V_corr= -268.45894\n", "ibin= 1483 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 60.6 173.7 0.003 0.118 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 5.93e+03 0.485 1.23e-09\n", "V_corr= -272.16685\n", "ibin= 1484 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 59.7 158.6 -0.038 -0.062 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.130 2.48e-09\n", "V_corr= -273.14195\n", "ibin= 1485 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 91.3 167.1 -0.069 -0.003 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.137 2.43e-09\n", "V_corr= -241.48016\n", "ibin= 1486 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 82.0 161.2 0.000 0.002 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0372 2.53e-09\n", "V_corr= -250.81417\n", "ibin= 1487 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 72.7 168.8 0.000 0.035 0.000 0.000 0.687 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0781 2.62e-09\n", "V_corr= -260.08199\n", "ibin= 1488 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 87.1 147.4 -0.009 0.048 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0486 2.47e-09\n", "V_corr= -245.73478\n", "ibin= 1489 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 73.5 154.4 0.026 0.024 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.163 2.32e-09\n", "V_corr= -259.32469\n", "ibin= 1490 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 71.5 152.2 0.003 0.030 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+04 -0.0391 2.42e-09\n", "V_corr= -261.29054\n", "ibin= 1491 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 85.3 152.6 -0.027 0.004 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.107 2.35e-09\n", "V_corr= -247.52141\n", "ibin= 1492 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 85.4 146.0 -0.006 -0.003 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.104 2.09e-09\n", "V_corr= -247.43450\n", "ibin= 1493 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 88.1 138.5 0.000 0.016 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.187 2.08e-09\n", "V_corr= -244.75158\n", "ibin= 1494 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 64.4 169.0 -0.034 0.079 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 2.26e+03 0.516 5.08e-10\n", "V_corr= -268.36131\n", "ibin= 1495 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 81.2 142.5 0.010 0.043 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 4.78e+03 0.120 7.29e-10\n", "V_corr= -251.56652\n", "ibin= 1496 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 94.1 160.3 -0.044 0.041 0.000 0.000 0.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.106 2.24e-09\n", "V_corr= -238.72694\n", "ibin= 1497 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 91.8 144.6 0.054 0.019 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.100 1.92e-09\n", "V_corr= -241.04936\n", "ibin= 1498 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 104.8 166.4 0.025 -0.022 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00998 1.99e-09\n", "V_corr= -227.99525\n", "ibin= 1499 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 91.2 166.6 -0.044 0.001 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 -0.0771 1.67e-09\n", "V_corr= -241.56238\n", "ibin= 1500 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 102.1 147.1 -0.069 0.040 0.000 0.000 0.352 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0789 1.66e-09\n", "V_corr= -230.73621\n", "ibin= 1501 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 108.3 130.5 0.046 0.049 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0484 1.70e-09\n", "V_corr= -224.55857\n", "ibin= 1502 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 109.7 128.7 0.066 0.037 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.230 1.34e-09\n", "V_corr= -223.07518\n", "ibin= 1503 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 131.5 131.3 -0.042 -0.022 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 1.42e-09\n", "V_corr= -201.35141\n", "ibin= 1504 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 109.2 155.2 -0.018 -0.027 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 3.52e+03 -0.0246 3.47e-10\n", "V_corr= -223.57750\n", "ibin= 1505 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 116.4 152.5 -0.038 -0.010 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 1.24e-09\n", "V_corr= -216.42112\n", "ibin= 1506 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 127.4 142.6 -0.007 0.041 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.321 1.08e-09\n", "V_corr= -205.42002\n", "ibin= 1507 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 92.7 197.8 0.018 0.086 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.618 2.62e-09\n", "V_corr= -240.10734\n", "ibin= 1508 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 132.8 127.6 -0.060 0.018 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.221 1.10e-09\n", "V_corr= -199.99231\n", "ibin= 1509 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 109.8 188.5 -0.115 -0.007 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 7.75e+03 0.163 6.97e-10\n", "V_corr= -223.03413\n", "ibin= 1510 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 114.1 148.4 -0.020 0.048 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.113 1.07e-09\n", "V_corr= -218.69708\n", "ibin= 1511 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 98.3 171.7 -0.028 0.081 0.000 0.000 0.292 NaN\n", "Ages, Metallicities, Weights:\n", " 3.54e+03 0.330 3.19e-10\n", "V_corr= -234.50917\n", "ibin= 1512 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 98.3 162.8 -0.049 0.035 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.84e+04 -0.0403 9.91e-10\n", "V_corr= -234.46466\n", "ibin= 1513 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 136.7 148.5 -0.037 -0.061 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.390 6.95e-10\n", "V_corr= -196.06055\n", "ibin= 1514 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 124.5 148.9 -0.093 -0.044 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.236 8.85e-10\n", "V_corr= -208.28664\n", "ibin= 1515 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 101.3 154.3 -0.005 -0.023 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+03 0.352 7.97e-11\n", "V_corr= -231.48813\n", "ibin= 1516 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 128.1 163.8 -0.095 -0.026 0.000 0.000 0.366 NaN\n", "Ages, Metallicities, Weights:\n", " 2.40e+03 0.605 2.66e-10\n", "V_corr= -204.67125\n", "ibin= 1517 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 251 101.4 222.3 -0.114 0.076 0.000 0.000 0.722 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.650 1.95e-09\n", "V_corr= -231.43028\n", "ibin= 1518 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1519 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1520 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 49.2 158.1 0.076 -0.017 0.000 0.000 1.306 NaN\n", "Ages, Metallicities, Weights:\n", " 8.77e+03 -0.186 2.75e-10\n", "V_corr= -283.59740\n", "ibin= 1521 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -22.4 107.2 0.014 -0.024 0.000 0.000 3.025 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.802 2.99e-10\n", "V_corr= -355.18698\n", "ibin= 1522 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 283 27.2 214.5 -0.008 0.082 0.000 0.000 1.427 NaN\n", "Ages, Metallicities, Weights:\n", " 975. 0.605 5.86e-11\n", "V_corr= -305.62025\n", "ibin= 1523 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -4.6 162.9 0.030 0.025 0.000 0.000 1.646 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.317 3.89e-10\n", "V_corr= -337.36817\n", "ibin= 1524 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 215 10.6 125.1 -0.012 0.014 0.000 0.000 1.050 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.735 3.41e-10\n", "V_corr= -322.25084\n", "ibin= 1525 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -24.4 165.9 0.060 0.006 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 2.31e+03 0.0630 1.16e-10\n", "V_corr= -357.18625\n", "ibin= 1526 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -10.6 132.6 0.004 0.021 0.000 0.000 1.034 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.738 3.50e-10\n", "V_corr= -343.36018\n", "ibin= 1527 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 107 -12.0 212.7 0.009 0.067 0.000 0.000 1.060 NaN\n", "Ages, Metallicities, Weights:\n", " 5.68e+03 0.244 3.20e-10\n", "V_corr= -344.80899\n", "ibin= 1528 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -27.5 160.3 0.029 0.035 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.249 6.61e-10\n", "V_corr= -360.33493\n", "ibin= 1529 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 46.0 102.4 0.045 0.025 0.000 0.000 1.082 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 -0.587 3.30e-10\n", "V_corr= -286.81201\n", "ibin= 1530 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -5.1 134.8 -0.027 -0.002 0.000 0.000 0.723 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+03 0.145 7.58e-11\n", "V_corr= -337.86310\n", "ibin= 1531 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -3.3 124.1 0.062 -0.038 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.410 6.78e-10\n", "V_corr= -336.13784\n", "ibin= 1532 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -19.8 117.6 0.053 0.043 0.000 0.000 0.886 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.421 6.70e-10\n", "V_corr= -352.64772\n", "ibin= 1533 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 25.9 102.1 0.007 0.033 0.000 0.000 0.736 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.00642 1.24e-10\n", "V_corr= -306.89614\n", "ibin= 1534 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 4.0 112.5 0.038 0.036 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 2.83e+03 -0.440 1.43e-10\n", "V_corr= -328.80740\n", "ibin= 1535 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 29.7 118.0 0.005 0.067 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 4.94e+03 -0.208 2.90e-10\n", "V_corr= -303.07196\n", "ibin= 1536 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 27.6 123.0 0.016 0.070 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.187 9.73e-10\n", "V_corr= -305.22953\n", "ibin= 1537 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -2.8 173.8 0.000 0.095 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 8.04e+03 0.307 7.11e-10\n", "V_corr= -335.61200\n", "ibin= 1538 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 14.9 130.0 -0.052 0.080 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 2.45e+03 0.278 2.33e-10\n", "V_corr= -317.90143\n", "ibin= 1539 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 18.4 133.1 0.056 0.052 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.157 1.13e-09\n", "V_corr= -314.37112\n", "ibin= 1540 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 17.1 140.5 0.015 0.078 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 7.65e+03 0.0308 6.18e-10\n", "V_corr= -315.71168\n", "ibin= 1541 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 44.7 169.9 -0.013 -0.062 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 2.61e+03 -0.00480 2.49e-10\n", "V_corr= -288.11510\n", "ibin= 1542 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 32.9 162.9 -0.037 0.143 0.000 0.000 0.735 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00121 1.33e-09\n", "V_corr= -299.92584\n", "ibin= 1543 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 35.8 177.5 -0.012 0.017 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.0362 1.17e-09\n", "V_corr= -296.96702\n", "ibin= 1544 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 30.1 142.8 -0.007 0.073 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 7.91e+03 -0.111 6.82e-10\n", "V_corr= -302.70342\n", "ibin= 1545 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 43.4 162.5 -0.047 0.085 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0218 1.66e-09\n", "V_corr= -289.36849\n", "ibin= 1546 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 32.5 155.9 0.044 -0.026 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.101 1.77e-09\n", "V_corr= -300.26929\n", "ibin= 1547 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 40.8 182.1 -0.011 0.021 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00697 1.98e-09\n", "V_corr= -292.04151\n", "ibin= 1548 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 244 52.9 163.5 -0.030 0.011 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0103 2.18e-09\n", "V_corr= -279.93401\n", "ibin= 1549 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 34.8 153.7 0.068 0.135 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 0.139 1.56e-09\n", "V_corr= -297.99309\n", "ibin= 1550 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 62.0 159.8 -0.044 0.025 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0990 2.27e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -270.81624\n", "ibin= 1551 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 47.6 171.4 -0.129 0.023 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 8.46e+03 0.0620 1.41e-09\n", "V_corr= -285.25464\n", "ibin= 1552 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 41.3 158.9 0.023 0.057 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -0.0334 1.74e-09\n", "V_corr= -291.48714\n", "ibin= 1553 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 45.4 135.5 0.022 0.092 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.163 1.92e-09\n", "V_corr= -287.36834\n", "ibin= 1554 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 77.1 145.8 -0.069 0.104 0.000 0.000 0.603 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0729 2.54e-09\n", "V_corr= -255.73746\n", "ibin= 1555 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 63.2 172.1 -0.049 0.052 0.000 0.000 0.371 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 0.118 2.30e-09\n", "V_corr= -269.64531\n", "ibin= 1556 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 58.7 179.4 -0.074 0.001 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0697 3.04e-09\n", "V_corr= -274.10916\n", "ibin= 1557 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 73.7 171.4 -0.032 -0.002 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00494 2.94e-09\n", "V_corr= -259.06876\n", "ibin= 1558 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 77.2 156.7 -0.048 -0.004 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 -0.106 2.01e-09\n", "V_corr= -255.62623\n", "ibin= 1559 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 81.8 170.1 0.020 0.056 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 5.01e+03 0.284 1.07e-09\n", "V_corr= -250.98783\n", "ibin= 1560 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 81.6 169.4 -0.047 -0.005 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0422 2.59e-09\n", "V_corr= -251.16949\n", "ibin= 1561 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 84.7 140.4 -0.012 0.013 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.141 2.33e-09\n", "V_corr= -248.11636\n", "ibin= 1562 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 78.0 156.4 -0.018 -0.042 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 -0.0734 2.26e-09\n", "V_corr= -254.77224\n", "ibin= 1563 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 114.2 145.7 -0.075 0.037 0.000 0.000 0.808 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0802 2.28e-09\n", "V_corr= -218.60313\n", "ibin= 1564 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 81.9 186.9 -0.022 -0.022 0.000 0.000 0.776 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0349 2.38e-09\n", "V_corr= -250.91071\n", "ibin= 1565 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 92.8 181.4 -0.075 0.046 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.169 2.39e-09\n", "V_corr= -239.99522\n", "ibin= 1566 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 95.9 178.7 -0.026 0.006 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 0.00614 1.75e-09\n", "V_corr= -236.88305\n", "ibin= 1567 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 75.9 162.0 -0.031 0.045 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0324 2.04e-09\n", "V_corr= -256.94988\n", "ibin= 1568 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 78.0 182.3 -0.087 0.016 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 0.204 2.25e-09\n", "V_corr= -254.80404\n", "ibin= 1569 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 77.5 167.8 -0.007 0.032 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.170 2.05e-09\n", "V_corr= -255.35522\n", "ibin= 1570 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 106.1 169.4 0.008 0.067 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 0.0320 1.52e-09\n", "V_corr= -226.66197\n", "ibin= 1571 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 101.4 171.8 0.072 0.035 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.151 1.74e-09\n", "V_corr= -231.44847\n", "ibin= 1572 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 97.2 155.2 0.012 0.000 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 0.141 1.52e-09\n", "V_corr= -235.59467\n", "ibin= 1573 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 77.0 161.5 -0.006 0.033 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0886 1.35e-09\n", "V_corr= -255.79967\n", "ibin= 1574 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 99.4 197.3 0.038 0.029 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.308 1.73e-09\n", "V_corr= -233.43712\n", "ibin= 1575 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 102.9 135.4 -0.019 -0.036 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+03 0.136 1.12e-10\n", "V_corr= -229.93139\n", "ibin= 1576 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 95.6 158.7 -0.030 -0.013 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 9.67e+03 -0.00588 7.73e-10\n", "V_corr= -237.18364\n", "ibin= 1577 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 89.2 154.6 0.005 0.021 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+03 0.563 2.48e-10\n", "V_corr= -243.64124\n", "ibin= 1578 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 84.6 157.7 -0.001 -0.025 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 2.04e+03 0.240 2.02e-10\n", "V_corr= -248.23413\n", "ibin= 1579 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 80.2 181.3 -0.053 0.010 0.000 0.000 0.323 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+03 0.620 1.28e-10\n", "V_corr= -252.62090\n", "ibin= 1580 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 109.8 155.5 -0.005 -0.024 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+03 0.610 1.32e-10\n", "V_corr= -223.05004\n", "ibin= 1581 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 125.3 170.0 -0.084 0.015 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 9.60e-10\n", "V_corr= -207.51906\n", "ibin= 1582 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 131.2 176.2 -0.061 -0.021 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 2.95e+03 0.295 2.62e-10\n", "V_corr= -201.62834\n", "ibin= 1583 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 115.3 139.1 0.020 0.013 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.119 9.54e-10\n", "V_corr= -217.55552\n", "ibin= 1584 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 135.4 169.3 -0.072 -0.033 0.000 0.000 0.309 NaN\n", "Ages, Metallicities, Weights:\n", " 3.56e+03 0.406 3.21e-10\n", "V_corr= -197.39930\n", "ibin= 1585 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 156.1 123.7 0.026 0.012 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.235 8.15e-10\n", "V_corr= -176.72843\n", "ibin= 1586 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 122.6 134.0 -0.021 -0.002 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.216 6.31e-10\n", "V_corr= -210.22339\n", "ibin= 1587 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1588 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1589 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -17.7 129.4 0.015 -0.013 0.000 0.000 1.672 NaN\n", "Ages, Metallicities, Weights:\n", " 996. 0.0786 3.90e-11\n", "V_corr= -350.48711\n", "ibin= 1590 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -14.0 90.5 0.008 -0.012 0.000 0.000 1.299 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.946 2.67e-10\n", "V_corr= -346.84408\n", "ibin= 1591 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 15.9 150.7 -0.006 0.021 0.000 0.000 0.964 NaN\n", "Ages, Metallicities, Weights:\n", " 4.54e+03 -0.240 1.72e-10\n", "V_corr= -316.86872\n", "ibin= 1592 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 5.5 124.3 -0.005 0.037 0.000 0.000 1.266 NaN\n", "Ages, Metallicities, Weights:\n", " 4.30e+03 -0.263 1.58e-10\n", "V_corr= -327.28977\n", "ibin= 1593 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 33.2 150.2 0.075 0.076 0.000 0.000 2.269 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.350 5.18e-10\n", "V_corr= -299.62313\n", "ibin= 1594 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -17.0 76.7 -0.016 0.009 0.000 0.000 1.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.755 3.96e-10\n", "V_corr= -349.77280\n", "ibin= 1595 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -0.6 105.8 -0.031 0.007 0.000 0.000 0.852 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+04 -0.619 4.52e-10\n", "V_corr= -333.44261\n", "ibin= 1596 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 -13.2 144.9 -0.004 0.070 0.000 0.000 1.284 NaN\n", "Ages, Metallicities, Weights:\n", " 2.65e+03 0.146 1.50e-10\n", "V_corr= -346.01974\n", "ibin= 1597 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 69 1.1 114.4 0.002 0.003 0.000 0.000 1.297 NaN\n", "Ages, Metallicities, Weights:\n", " 6.91e+03 -0.402 2.54e-10\n", "V_corr= -331.71495\n", "ibin= 1598 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 11.5 93.4 0.031 -0.004 0.000 0.000 0.799 NaN\n", "Ages, Metallicities, Weights:\n", " 3.76e+03 -0.431 1.61e-10\n", "V_corr= -321.33068\n", "ibin= 1599 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -30.1 153.1 0.037 -0.025 0.000 0.000 0.696 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.292 6.19e-10\n", "V_corr= -362.90492\n", "ibin= 1600 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 14.3 111.0 0.018 0.044 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.532 5.86e-10\n", "V_corr= -318.47482\n", "ibin= 1601 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -4.3 94.2 0.039 0.010 0.000 0.000 0.875 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+03 -0.289 9.24e-11\n", "V_corr= -337.13751\n", "ibin= 1602 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 9.9 102.1 -0.044 0.035 0.000 0.000 0.716 NaN\n", "Ages, Metallicities, Weights:\n", " 7.39e+03 -0.177 3.87e-10\n", "V_corr= -322.95158\n", "ibin= 1603 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 3.2 140.4 0.018 0.016 0.000 0.000 1.211 NaN\n", "Ages, Metallicities, Weights:\n", " 5.91e+03 -0.215 3.38e-10\n", "V_corr= -329.58286\n", "ibin= 1604 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -1.3 131.7 0.047 0.037 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+04 -0.152 7.02e-10\n", "V_corr= -334.09649\n", "ibin= 1605 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 16.9 102.9 -0.014 -0.020 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 6.22e+03 -0.264 3.78e-10\n", "V_corr= -315.94749\n", "ibin= 1606 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 20.0 188.2 0.024 0.073 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 2.04e+03 0.544 2.47e-10\n", "V_corr= -312.79051\n", "ibin= 1607 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 206 9.6 149.3 0.002 0.094 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0272 1.18e-09\n", "V_corr= -323.19337\n", "ibin= 1608 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 15.6 131.3 0.054 0.044 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.267 1.10e-09\n", "V_corr= -317.21918\n", "ibin= 1609 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 11.4 111.6 -0.017 0.032 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 7.87e+03 -0.342 4.75e-10\n", "V_corr= -321.42671\n", "ibin= 1610 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 10.7 167.1 0.008 0.033 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 5.29e+03 0.141 5.31e-10\n", "V_corr= -322.15583\n", "ibin= 1611 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 23.5 164.1 -0.023 0.063 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+04 -0.0356 1.04e-09\n", "V_corr= -309.29918\n", "ibin= 1612 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 23.7 168.1 -0.007 0.052 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 7.14e+03 0.182 8.76e-10\n", "V_corr= -309.13156\n", "ibin= 1613 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 31.9 136.0 -0.011 0.091 0.000 0.000 0.749 NaN\n", "Ages, Metallicities, Weights:\n", " 3.82e+03 0.0141 4.33e-10\n", "V_corr= -300.91458\n", "ibin= 1614 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 34.5 154.4 -0.088 0.072 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.128 1.68e-09\n", "V_corr= -298.33614\n", "ibin= 1615 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 54.6 174.0 -0.027 0.110 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0910 1.97e-09\n", "V_corr= -278.24027\n", "ibin= 1616 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 35.8 147.7 -0.007 0.004 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.170 1.94e-09\n", "V_corr= -297.00799\n", "ibin= 1617 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 45.7 158.1 0.057 0.025 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 -0.0313 1.89e-09\n", "V_corr= -287.12520\n", "ibin= 1618 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 65.2 154.2 -0.017 0.037 0.000 0.000 0.548 NaN\n", "Ages, Metallicities, Weights:\n", " 6.61e+03 -0.0412 1.01e-09\n", "V_corr= -267.65415\n", "ibin= 1619 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 48.2 156.3 -0.068 0.072 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 3.98e+03 0.275 8.10e-10\n", "V_corr= -284.57703\n", "ibin= 1620 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 51.8 157.2 -0.031 0.017 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 7.98e+03 -0.0148 1.40e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -281.03722\n", "ibin= 1621 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 61.0 171.7 0.001 0.063 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+04 0.154 2.52e-09\n", "V_corr= -271.79841\n", "ibin= 1622 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 62.4 169.5 -0.028 0.011 0.000 0.000 0.749 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0105 3.08e-09\n", "V_corr= -270.41718\n", "ibin= 1623 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 68.4 155.9 -0.029 0.019 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0132 3.14e-09\n", "V_corr= -264.44874\n", "ibin= 1624 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 64.0 182.8 0.021 0.079 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.159 3.42e-09\n", "V_corr= -268.79515\n", "ibin= 1625 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 78.9 137.3 -0.110 0.076 0.000 0.000 0.658 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0784 2.91e-09\n", "V_corr= -253.86280\n", "ibin= 1626 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 68.2 154.2 0.022 0.048 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0687 3.01e-09\n", "V_corr= -264.59460\n", "ibin= 1627 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 81.3 157.2 -0.021 0.055 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.0791 2.39e-09\n", "V_corr= -251.49873\n", "ibin= 1628 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 75.1 150.1 -0.058 0.061 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0218 2.87e-09\n", "V_corr= -257.69725\n", "ibin= 1629 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 75.7 162.4 -0.027 -0.008 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 2.32e+03 0.423 6.39e-10\n", "V_corr= -257.13827\n", "ibin= 1630 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 98.4 138.9 -0.038 0.080 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0837 2.58e-09\n", "V_corr= -234.37841\n", "ibin= 1631 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 84.6 152.2 -0.074 0.005 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.127 2.55e-09\n", "V_corr= -248.23145\n", "ibin= 1632 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 80.4 165.9 -0.052 0.010 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0812 2.42e-09\n", "V_corr= -252.43993\n", "ibin= 1633 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 81.7 150.5 -0.022 0.039 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.137 2.16e-09\n", "V_corr= -251.07107\n", "ibin= 1634 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 98.2 180.0 -0.054 -0.052 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0521 2.34e-09\n", "V_corr= -234.61756\n", "ibin= 1635 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 89.2 144.9 0.016 0.036 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.117 2.05e-09\n", "V_corr= -243.60974\n", "ibin= 1636 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 118.8 152.3 -0.025 0.032 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.162 1.85e-09\n", "V_corr= -214.04126\n", "ibin= 1637 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 86.8 164.3 -0.066 0.013 0.000 0.000 0.787 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.0180 1.62e-09\n", "V_corr= -246.02645\n", "ibin= 1638 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 121.9 148.2 -0.110 0.004 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0769 1.75e-09\n", "V_corr= -210.93686\n", "ibin= 1639 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 106.9 172.3 -0.042 0.083 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 6.90e+03 0.183 8.12e-10\n", "V_corr= -225.92101\n", "ibin= 1640 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 92.0 138.3 -0.032 0.036 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 8.09e+03 0.0155 8.02e-10\n", "V_corr= -240.81781\n", "ibin= 1641 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 111.9 153.1 -0.011 -0.026 0.000 0.000 0.908 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0720 1.49e-09\n", "V_corr= -220.92487\n", "ibin= 1642 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 131.7 168.6 -0.017 0.034 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0144 1.44e-09\n", "V_corr= -201.09525\n", "ibin= 1643 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 104.1 144.3 -0.036 0.044 0.000 0.000 0.351 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.115 1.51e-09\n", "V_corr= -228.70213\n", "ibin= 1644 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 108.2 157.6 -0.006 -0.032 0.000 0.000 0.368 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.116 1.30e-09\n", "V_corr= -224.61845\n", "ibin= 1645 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 111.7 138.5 0.007 -0.042 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.241 1.06e-09\n", "V_corr= -221.10722\n", "ibin= 1646 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 111.4 152.9 -0.036 -0.014 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0115 1.23e-09\n", "V_corr= -221.37871\n", "ibin= 1647 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 104.8 148.7 -0.004 0.030 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 7.23e+03 0.00458 5.45e-10\n", "V_corr= -227.96433\n", "ibin= 1648 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 96.7 178.5 -0.052 0.009 0.000 0.000 0.362 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 0.108 9.59e-10\n", "V_corr= -236.14774\n", "ibin= 1649 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 117.2 120.1 -0.040 0.014 0.000 0.000 0.318 NaN\n", "Ages, Metallicities, Weights:\n", " 4.05e+03 -0.0923 2.78e-10\n", "V_corr= -215.58716\n", "ibin= 1650 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 110.3 199.8 -0.097 0.007 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 0.129 8.51e-10\n", "V_corr= -222.53526\n", "ibin= 1651 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 130.7 149.0 -0.015 0.011 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.133 9.64e-10\n", "V_corr= -202.10049\n", "ibin= 1652 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 128.5 143.2 -0.076 -0.023 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 2.71e+03 0.213 1.98e-10\n", "V_corr= -204.33199\n", "ibin= 1653 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 104.9 152.9 -0.033 0.023 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 3.12e+03 0.426 2.75e-10\n", "V_corr= -227.89416\n", "ibin= 1654 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 118.9 188.2 -0.016 -0.001 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 2.45e-09\n", "V_corr= -213.93856\n", "ibin= 1655 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 124.0 174.7 0.010 -0.001 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 2.60e+03 0.426 2.18e-10\n", "V_corr= -208.83070\n", "ibin= 1656 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1657 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1658 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -20.0 78.2 0.001 -0.010 0.000 0.000 0.952 NaN\n", "Ages, Metallicities, Weights:\n", " 2.26e+03 -0.477 7.05e-11\n", "V_corr= -352.84185\n", "ibin= 1659 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 7.6 151.5 -0.001 0.039 0.000 0.000 0.756 NaN\n", "Ages, Metallicities, Weights:\n", " 9.03e+03 -0.272 2.64e-10\n", "V_corr= -325.24479\n", "ibin= 1660 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -3.0 113.1 -0.004 0.007 0.000 0.000 1.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.821 2.51e-10\n", "V_corr= -335.84246\n", "ibin= 1661 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -15.7 144.7 0.024 0.026 0.000 0.000 0.927 NaN\n", "Ages, Metallicities, Weights:\n", " 3.35e+03 0.133 1.63e-10\n", "V_corr= -348.54801\n", "ibin= 1662 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -17.5 110.6 0.015 0.032 0.000 0.000 0.997 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.571 4.43e-10\n", "V_corr= -350.35409\n", "ibin= 1663 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -24.5 152.5 0.009 -0.050 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 5.08e+03 -0.506 1.80e-10\n", "V_corr= -357.27590\n", "ibin= 1664 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 7.4 162.6 0.020 0.021 0.000 0.000 0.850 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.198 5.11e-10\n", "V_corr= -325.37903\n", "ibin= 1665 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 2.5 177.4 0.091 -0.023 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.362 5.51e-10\n", "V_corr= -330.26497\n", "ibin= 1666 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -19.4 113.0 -0.022 0.004 0.000 0.000 0.620 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.637 4.86e-10\n", "V_corr= -352.21805\n", "ibin= 1667 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 115 19.9 129.5 0.063 -0.033 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.423 6.61e-10\n", "V_corr= -312.92544\n", "ibin= 1668 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -15.2 61.4 -0.007 0.000 0.000 0.000 1.102 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.831 3.99e-10\n", "V_corr= -348.04978\n", "ibin= 1669 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 0.2 141.9 0.036 0.027 0.000 0.000 0.957 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 -0.259 5.08e-10\n", "V_corr= -332.63510\n", "ibin= 1670 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -21.6 170.6 0.061 0.045 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 9.06e+03 -0.0522 5.10e-10\n", "V_corr= -354.37169\n", "ibin= 1671 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 1.2 115.1 0.036 0.009 0.000 0.000 0.755 NaN\n", "Ages, Metallicities, Weights:\n", " 2.50e+03 -0.127 1.64e-10\n", "V_corr= -331.57686\n", "ibin= 1672 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -2.0 159.8 -0.070 0.011 0.000 0.000 0.956 NaN\n", "Ages, Metallicities, Weights:\n", " 3.91e+03 -0.0103 2.78e-10\n", "V_corr= -334.85257\n", "ibin= 1673 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 5.0 131.1 -0.050 0.089 0.000 0.000 0.738 NaN\n", "Ages, Metallicities, Weights:\n", " 2.91e+03 0.115 2.27e-10\n", "V_corr= -327.82147\n", "ibin= 1674 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -3.6 195.6 -0.019 0.063 0.000 0.000 1.195 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.430 1.68e-09\n", "V_corr= -336.42329\n", "ibin= 1675 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 -1.6 138.8 0.003 0.014 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 2.75e+03 0.236 2.68e-10\n", "V_corr= -334.38986\n", "ibin= 1676 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -19.0 160.7 0.007 0.072 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.117 1.19e-09\n", "V_corr= -351.76553\n", "ibin= 1677 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -1.7 143.0 -0.039 -0.011 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 3.04e+03 -0.105 2.67e-10\n", "V_corr= -334.52245\n", "ibin= 1678 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 10.4 133.1 0.009 0.044 0.000 0.000 0.674 NaN\n", "Ages, Metallicities, Weights:\n", " 7.17e+03 -0.152 5.66e-10\n", "V_corr= -322.41692\n", "ibin= 1679 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 47.1 141.1 -0.028 0.047 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.193 1.14e-09\n", "V_corr= -285.65992\n", "ibin= 1680 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 20.5 163.4 0.076 0.023 0.000 0.000 0.820 NaN\n", "Ages, Metallicities, Weights:\n", " 8.21e+03 -0.0411 7.94e-10\n", "V_corr= -312.35151\n", "ibin= 1681 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 7.2 174.5 0.037 0.010 0.000 0.000 0.661 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.0405 1.65e-09\n", "V_corr= -325.65840\n", "ibin= 1682 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 25.9 147.2 0.031 -0.024 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.217 1.60e-09\n", "V_corr= -306.91369\n", "ibin= 1683 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 20.0 182.8 -0.056 0.056 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00674 1.94e-09\n", "V_corr= -312.79886\n", "ibin= 1684 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 19.3 183.3 -0.044 0.063 0.000 0.000 0.770 NaN\n", "Ages, Metallicities, Weights:\n", " 8.62e+03 0.171 1.31e-09\n", "V_corr= -313.51242\n", "ibin= 1685 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 33.8 156.0 -0.044 0.059 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0177 2.34e-09\n", "V_corr= -298.98135\n", "ibin= 1686 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 57.1 145.7 -0.035 0.065 0.000 0.000 0.851 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.177 2.00e-09\n", "V_corr= -275.72646\n", "ibin= 1687 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 40.4 177.3 -0.044 0.080 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 0.144 2.02e-09\n", "V_corr= -292.38673\n", "ibin= 1688 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 59.8 161.9 -0.092 -0.018 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.0596 1.90e-09\n", "V_corr= -272.97963\n", "ibin= 1689 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 55.2 145.0 -0.008 0.109 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0167 2.98e-09\n", "V_corr= -277.65754\n", "ibin= 1690 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 54.6 183.0 -0.032 -0.003 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00158 3.36e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -278.21408\n", "ibin= 1691 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 64.6 199.7 -0.087 0.089 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 0.254 3.55e-09\n", "V_corr= -268.20824\n", "ibin= 1692 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 64.7 176.8 -0.094 0.077 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 0.110 3.21e-09\n", "V_corr= -268.12152\n", "ibin= 1693 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 73.2 159.5 -0.051 0.061 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.100 3.10e-09\n", "V_corr= -259.56393\n", "ibin= 1694 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 71.9 178.0 -0.056 0.046 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.140 3.64e-09\n", "V_corr= -260.92540\n", "ibin= 1695 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 62.4 156.8 -0.021 -0.005 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.198 3.09e-09\n", "V_corr= -270.45302\n", "ibin= 1696 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 64.1 158.0 -0.015 0.020 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0149 3.33e-09\n", "V_corr= -268.73032\n", "ibin= 1697 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 67.0 137.2 0.005 0.075 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 6.98e+03 -0.0172 1.38e-09\n", "V_corr= -265.82657\n", "ibin= 1698 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 78.0 165.6 -0.038 0.005 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0670 3.31e-09\n", "V_corr= -254.82264\n", "ibin= 1699 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 89.2 147.5 -0.014 0.021 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.132 2.78e-09\n", "V_corr= -243.59279\n", "ibin= 1700 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 82.0 180.4 -0.050 0.032 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.134 2.65e-09\n", "V_corr= -250.82072\n", "ibin= 1701 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 86.9 164.9 -0.080 0.031 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00891 2.77e-09\n", "V_corr= -245.93439\n", "ibin= 1702 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 86.0 139.7 -0.017 0.093 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0116 2.49e-09\n", "V_corr= -246.80848\n", "ibin= 1703 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 86.1 177.1 -0.019 0.064 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.144 2.65e-09\n", "V_corr= -246.65978\n", "ibin= 1704 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 76.2 166.7 -0.015 -0.023 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 0.0471 2.13e-09\n", "V_corr= -256.65813\n", "ibin= 1705 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 222 83.7 173.3 -0.087 0.019 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0123 2.14e-09\n", "V_corr= -249.12664\n", "ibin= 1706 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 91.9 153.8 0.011 0.003 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 1.82e-09\n", "V_corr= -240.87612\n", "ibin= 1707 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 96.9 147.8 -0.028 0.063 0.000 0.000 0.393 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+03 0.451 3.07e-10\n", "V_corr= -235.90788\n", "ibin= 1708 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 102.8 157.8 -0.026 0.025 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0147 1.79e-09\n", "V_corr= -230.01004\n", "ibin= 1709 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 83.4 166.0 0.043 0.047 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+04 -0.0152 1.62e-09\n", "V_corr= -249.45355\n", "ibin= 1710 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 90.8 148.4 0.037 0.020 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+04 0.00154 1.18e-09\n", "V_corr= -241.97366\n", "ibin= 1711 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 97.4 170.4 0.046 0.076 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.150 1.64e-09\n", "V_corr= -235.43511\n", "ibin= 1712 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 111.4 172.8 -0.050 0.078 0.000 0.000 0.314 NaN\n", "Ages, Metallicities, Weights:\n", " 7.92e+03 0.191 8.78e-10\n", "V_corr= -221.36061\n", "ibin= 1713 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 78.5 197.4 -0.026 -0.003 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.567 2.60e-09\n", "V_corr= -254.35696\n", "ibin= 1714 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 191 113.4 180.5 -0.021 0.083 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.181 1.41e-09\n", "V_corr= -219.37660\n", "ibin= 1715 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 113.8 182.7 -0.035 0.027 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 4.82e+03 0.310 4.82e-10\n", "V_corr= -219.05586\n", "ibin= 1716 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 121.2 161.6 0.061 0.021 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.101 8.12e-10\n", "V_corr= -211.65037\n", "ibin= 1717 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 102.4 157.8 0.026 -0.016 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+03 0.472 1.08e-10\n", "V_corr= -230.39548\n", "ibin= 1718 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 107.7 137.2 -0.026 0.030 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 7.60e+03 0.106 5.84e-10\n", "V_corr= -225.10452\n", "ibin= 1719 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 108.9 153.3 -0.024 0.065 0.000 0.000 0.351 NaN\n", "Ages, Metallicities, Weights:\n", " 2.21e+03 0.438 2.15e-10\n", "V_corr= -223.89428\n", "ibin= 1720 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 93.1 120.4 -0.005 0.011 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 -0.00863 1.29e-10\n", "V_corr= -239.71947\n", "ibin= 1721 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 142.7 145.5 -0.006 -0.025 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0414 8.99e-10\n", "V_corr= -190.06422\n", "ibin= 1722 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 147.9 153.4 -0.041 0.020 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0857 9.19e-10\n", "V_corr= -184.93900\n", "ibin= 1723 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 127.3 149.3 0.009 -0.057 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.168 8.92e-10\n", "V_corr= -205.47777\n", "ibin= 1724 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 120.5 137.0 0.038 -0.025 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.0841 7.12e-10\n", "V_corr= -212.35615\n", "ibin= 1725 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1726 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1727 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 6.5 88.5 0.007 0.016 0.000 0.000 1.405 NaN\n", "Ages, Metallicities, Weights:\n", " 2.81e+03 -0.474 8.46e-11\n", "V_corr= -326.25988\n", "ibin= 1728 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -36.8 91.7 -0.021 0.008 0.000 0.000 1.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.770 3.53e-10\n", "V_corr= -369.57410\n", "ibin= 1729 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 120 -36.3 171.1 -0.016 0.029 0.000 0.000 1.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+03 0.279 6.53e-11\n", "V_corr= -369.13020\n", "ibin= 1730 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 -3.0 219.0 0.033 -0.007 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.112 6.74e-10\n", "V_corr= -335.78943\n", "ibin= 1731 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -7.1 140.3 0.104 0.024 0.000 0.000 1.407 NaN\n", "Ages, Metallicities, Weights:\n", " 2.39e+03 0.149 1.29e-10\n", "V_corr= -339.91100\n", "ibin= 1732 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -51.9 155.7 0.016 0.040 0.000 0.000 1.159 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.374 5.74e-10\n", "V_corr= -384.66493\n", "ibin= 1733 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -4.5 94.1 -0.028 0.019 0.000 0.000 1.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.43e+04 -0.823 3.38e-10\n", "V_corr= -337.32934\n", "ibin= 1734 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 344 20.7 80.5 -0.024 0.025 0.000 0.000 0.944 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.844 3.69e-10\n", "V_corr= -312.12685\n", "ibin= 1735 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -34.6 151.2 -0.007 0.033 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.451 6.04e-10\n", "V_corr= -367.38739\n", "ibin= 1736 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 17.8 121.7 0.024 0.039 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 8.12e+03 -0.208 3.65e-10\n", "V_corr= -314.99932\n", "ibin= 1737 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 166 18.8 167.5 0.106 0.138 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 9.53e+03 0.157 5.90e-10\n", "V_corr= -314.05500\n", "ibin= 1738 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 4.0 119.7 -0.017 0.075 0.000 0.000 1.023 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 -0.164 5.18e-10\n", "V_corr= -328.78777\n", "ibin= 1739 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -3.9 165.9 0.081 0.026 0.000 0.000 1.173 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.376 1.74e-10\n", "V_corr= -336.67290\n", "ibin= 1740 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 27.8 126.7 -0.015 0.048 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 -0.380 7.20e-10\n", "V_corr= -305.02234\n", "ibin= 1741 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -8.9 113.2 0.052 0.040 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 4.43e+03 -0.304 2.73e-10\n", "V_corr= -341.67954\n", "ibin= 1742 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -10.2 160.9 -0.002 0.072 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 5.84e+03 0.198 4.91e-10\n", "V_corr= -343.04040\n", "ibin= 1743 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 86 11.7 136.5 0.065 0.056 0.000 0.000 0.768 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 -0.0811 7.74e-10\n", "V_corr= -321.06647\n", "ibin= 1744 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 120 3.4 144.7 0.068 0.000 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.310 9.23e-10\n", "V_corr= -329.39587\n", "ibin= 1745 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 27.3 157.5 -0.001 0.098 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 6.83e+03 0.105 6.37e-10\n", "V_corr= -305.55354\n", "ibin= 1746 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 40.8 129.0 -0.082 0.083 0.000 0.000 1.025 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.187 1.24e-09\n", "V_corr= -291.98793\n", "ibin= 1747 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 16.7 155.4 -0.010 0.026 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+04 -0.112 8.51e-10\n", "V_corr= -316.07761\n", "ibin= 1748 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 6.0 156.4 -0.079 0.035 0.000 0.000 0.714 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+03 0.443 2.90e-10\n", "V_corr= -326.82306\n", "ibin= 1749 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 12.7 158.7 -0.005 0.064 0.000 0.000 0.750 NaN\n", "Ages, Metallicities, Weights:\n", " 7.90e+03 0.0509 9.00e-10\n", "V_corr= -320.09737\n", "ibin= 1750 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 16.0 167.3 -0.019 0.042 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 0.0253 1.40e-09\n", "V_corr= -316.77441\n", "ibin= 1751 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 21.5 163.0 -0.051 0.041 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 5.08e+03 0.256 7.85e-10\n", "V_corr= -311.33377\n", "ibin= 1752 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 31.3 151.8 0.004 0.005 0.000 0.000 0.892 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.217 1.80e-09\n", "V_corr= -301.49013\n", "ibin= 1753 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 35.1 174.6 -0.045 -0.062 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 -0.00457 1.97e-09\n", "V_corr= -297.66851\n", "ibin= 1754 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 41.0 154.4 -0.036 0.038 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.162 2.36e-09\n", "V_corr= -291.82434\n", "ibin= 1755 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 53.7 148.6 0.005 0.086 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0224 2.71e-09\n", "V_corr= -279.07008\n", "ibin= 1756 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 49.2 169.0 -0.010 0.050 0.000 0.000 0.671 NaN\n", "Ages, Metallicities, Weights:\n", " 9.54e+03 0.120 1.93e-09\n", "V_corr= -283.59514\n", "ibin= 1757 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 65.7 175.4 -0.032 0.052 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0613 3.04e-09\n", "V_corr= -267.09294\n", "ibin= 1758 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 56.2 166.4 -0.056 0.089 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0953 3.49e-09\n", "V_corr= -276.60829\n", "ibin= 1759 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 51.5 171.2 -0.068 0.043 0.000 0.000 0.337 NaN\n", "Ages, Metallicities, Weights:\n", " 8.31e+03 0.164 2.20e-09\n", "V_corr= -281.35224\n", "ibin= 1760 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 57.0 170.6 -0.063 -0.005 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0607 3.68e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -275.83466\n", "ibin= 1761 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 60.8 162.3 -0.099 0.067 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0981 3.44e-09\n", "V_corr= -271.99589\n", "ibin= 1762 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 37.3 194.8 -0.146 0.039 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.239 4.46e-09\n", "V_corr= -295.54134\n", "ibin= 1763 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 55.3 193.1 -0.077 0.056 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.583 7.13e-09\n", "V_corr= -277.53260\n", "ibin= 1764 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 70.6 138.1 -0.012 0.057 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.128 3.38e-09\n", "V_corr= -262.17631\n", "ibin= 1765 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 81.9 166.1 -0.072 0.025 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 0.0291 2.50e-09\n", "V_corr= -250.88366\n", "ibin= 1766 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 70.0 166.7 -0.053 0.059 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 0.0559 3.11e-09\n", "V_corr= -262.76379\n", "ibin= 1767 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 77.9 160.7 -0.053 -0.020 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 1.00e+04 -0.0423 2.00e-09\n", "V_corr= -254.86661\n", "ibin= 1768 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 68.3 165.2 0.027 0.023 0.000 0.000 0.757 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0271 3.34e-09\n", "V_corr= -264.49621\n", "ibin= 1769 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 77.7 161.2 -0.013 0.012 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0257 3.08e-09\n", "V_corr= -255.10588\n", "ibin= 1770 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 80.2 180.8 -0.024 0.048 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 0.231 3.33e-09\n", "V_corr= -252.62430\n", "ibin= 1771 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 70.4 172.6 -0.026 -0.028 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.123 2.17e-09\n", "V_corr= -262.45639\n", "ibin= 1772 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 74.3 184.4 -0.014 0.022 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 0.166 2.62e-09\n", "V_corr= -258.52316\n", "ibin= 1773 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 79.7 156.2 -0.030 0.075 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 0.103 2.28e-09\n", "V_corr= -253.07571\n", "ibin= 1774 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 81.6 157.0 -0.032 0.073 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.110 2.41e-09\n", "V_corr= -251.22262\n", "ibin= 1775 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 98.2 145.5 0.016 0.072 0.000 0.000 0.336 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0429 2.04e-09\n", "V_corr= -234.56557\n", "ibin= 1776 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 80.8 170.6 -0.040 -0.003 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 5.11e+03 0.189 7.74e-10\n", "V_corr= -251.97580\n", "ibin= 1777 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 88.5 171.9 -0.047 0.035 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0493 1.86e-09\n", "V_corr= -244.27271\n", "ibin= 1778 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 94.2 170.8 -0.070 0.005 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 3.38e+03 0.413 5.29e-10\n", "V_corr= -238.64435\n", "ibin= 1779 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 99.4 140.7 -0.064 -0.040 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 7.12e+03 -0.0293 7.33e-10\n", "V_corr= -233.35905\n", "ibin= 1780 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 102.8 151.3 -0.049 0.053 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0207 1.54e-09\n", "V_corr= -229.96643\n", "ibin= 1781 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 87.6 201.2 -0.030 0.082 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.141 1.57e-09\n", "V_corr= -245.18162\n", "ibin= 1782 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 109.9 170.0 -0.065 0.074 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 3.50e-09\n", "V_corr= -222.95486\n", "ibin= 1783 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 101.7 156.3 -0.003 -0.053 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.216 1.19e-09\n", "V_corr= -231.11081\n", "ibin= 1784 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 108.8 182.8 0.016 0.012 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.0904 1.25e-09\n", "V_corr= -223.97741\n", "ibin= 1785 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 109.3 171.0 -0.040 -0.039 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0845 1.29e-09\n", "V_corr= -223.49996\n", "ibin= 1786 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 130.3 144.8 -0.011 0.055 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 7.18e+03 0.00431 4.83e-10\n", "V_corr= -202.49033\n", "ibin= 1787 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 113.2 131.9 0.040 0.060 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.0690 9.51e-10\n", "V_corr= -219.56309\n", "ibin= 1788 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 94.6 162.6 -0.058 0.023 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 8.02e+03 -0.0273 5.11e-10\n", "V_corr= -238.18281\n", "ibin= 1789 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 112.7 176.5 -0.012 0.033 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 9.05e+03 0.286 6.98e-10\n", "V_corr= -220.09260\n", "ibin= 1790 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 93.7 176.5 0.000 0.035 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 9.39e+03 0.204 5.71e-10\n", "V_corr= -239.08283\n", "ibin= 1791 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 106.9 171.6 -0.092 -0.006 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 5.79e+03 -0.0353 3.45e-10\n", "V_corr= -225.88940\n", "ibin= 1792 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 148.2 154.6 0.053 -0.003 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.164 9.25e-10\n", "V_corr= -184.65699\n", "ibin= 1793 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 144.1 119.4 0.022 0.058 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+03 0.395 1.43e-10\n", "V_corr= -188.67559\n", "ibin= 1794 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1795 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1796 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 243 -26.5 59.0 -0.010 0.006 0.000 0.000 2.676 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+03 -0.542 4.26e-11\n", "V_corr= -359.26552\n", "ibin= 1797 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -4.1 104.7 0.020 -0.004 0.000 0.000 0.887 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.380 5.12e-10\n", "V_corr= -336.87583\n", "ibin= 1798 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -28.8 183.5 0.064 -0.011 0.000 0.000 1.240 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+03 0.298 8.15e-11\n", "V_corr= -361.57137\n", "ibin= 1799 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -46.2 169.1 0.001 -0.013 0.000 0.000 1.694 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 -0.184 3.95e-10\n", "V_corr= -378.98186\n", "ibin= 1800 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -13.4 93.8 -0.013 -0.003 0.000 0.000 1.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+04 -0.914 3.18e-10\n", "V_corr= -346.25125\n", "ibin= 1801 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 187 -5.2 159.9 0.042 0.058 0.000 0.000 1.105 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+03 0.0630 7.44e-11\n", "V_corr= -337.96791\n", "ibin= 1802 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -15.0 96.1 0.012 0.026 0.000 0.000 0.984 NaN\n", "Ages, Metallicities, Weights:\n", " 6.08e+03 -0.472 2.20e-10\n", "V_corr= -347.82430\n", "ibin= 1803 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -17.1 115.4 0.006 0.022 0.000 0.000 0.924 NaN\n", "Ages, Metallicities, Weights:\n", " 9.92e+03 -0.366 3.57e-10\n", "V_corr= -349.95310\n", "ibin= 1804 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -15.1 146.5 -0.005 0.040 0.000 0.000 3.196 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.364 6.79e-10\n", "V_corr= -347.88188\n", "ibin= 1805 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 4.8 105.6 -0.059 0.013 0.000 0.000 2.360 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.559 5.94e-10\n", "V_corr= -328.01505\n", "ibin= 1806 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -1.1 142.3 0.039 -0.037 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.367 7.76e-10\n", "V_corr= -333.87583\n", "ibin= 1807 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 96 -3.2 118.2 -0.013 0.039 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 2.04e+03 0.0241 1.41e-10\n", "V_corr= -336.00318\n", "ibin= 1808 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -12.9 103.1 -0.017 0.016 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.580 5.70e-10\n", "V_corr= -345.66434\n", "ibin= 1809 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 10.1 134.7 0.055 0.018 0.000 0.000 0.662 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.465 6.61e-10\n", "V_corr= -322.72909\n", "ibin= 1810 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -2.5 97.7 -0.008 0.027 0.000 0.000 0.900 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.389 8.79e-10\n", "V_corr= -335.35293\n", "ibin= 1811 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 24.7 109.7 -0.028 0.028 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.542 8.05e-10\n", "V_corr= -308.09895\n", "ibin= 1812 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 5.5 113.9 -0.028 -0.003 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 6.79e+03 -0.237 4.71e-10\n", "V_corr= -327.31865\n", "ibin= 1813 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 5.1 173.6 0.002 0.053 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.181 1.50e-09\n", "V_corr= -327.67599\n", "ibin= 1814 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 3.3 144.6 0.026 0.053 0.000 0.000 0.684 NaN\n", "Ages, Metallicities, Weights:\n", " 5.54e+03 -0.189 4.51e-10\n", "V_corr= -329.55146\n", "ibin= 1815 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 36.6 156.9 -0.001 0.060 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.0654 1.35e-09\n", "V_corr= -296.17233\n", "ibin= 1816 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 31.0 152.7 0.006 0.024 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.205 1.18e-09\n", "V_corr= -301.80941\n", "ibin= 1817 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 29.4 146.8 -0.028 0.114 0.000 0.000 0.835 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00642 1.69e-09\n", "V_corr= -303.44208\n", "ibin= 1818 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 25.4 175.7 -0.063 -0.029 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 0.0192 1.22e-09\n", "V_corr= -307.42178\n", "ibin= 1819 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 98 20.4 160.1 0.010 -0.100 0.000 0.000 0.560 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.291 1.65e-09\n", "V_corr= -312.43097\n", "ibin= 1820 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 26.0 168.6 -0.072 0.045 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 7.19e+03 0.267 1.19e-09\n", "V_corr= -306.82503\n", "ibin= 1821 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 33.0 147.7 0.022 0.077 0.000 0.000 0.700 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+04 0.0515 1.49e-09\n", "V_corr= -299.84144\n", "ibin= 1822 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 25.0 144.3 -0.020 0.089 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 -0.0283 1.55e-09\n", "V_corr= -307.82393\n", "ibin= 1823 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 23.0 177.4 -0.037 0.028 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+04 0.0300 1.77e-09\n", "V_corr= -309.78401\n", "ibin= 1824 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 38.7 172.2 -0.046 -0.000 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 -0.0191 1.92e-09\n", "V_corr= -294.14755\n", "ibin= 1825 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 44.8 176.9 -0.063 0.057 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 0.152 2.41e-09\n", "V_corr= -288.02104\n", "ibin= 1826 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 55.5 144.1 -0.051 0.057 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.129 2.99e-09\n", "V_corr= -277.33645\n", "ibin= 1827 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 49.0 163.5 -0.002 0.054 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0461 3.70e-09\n", "V_corr= -283.81206\n", "ibin= 1828 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 54.9 167.8 0.009 0.094 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 0.195 3.72e-09\n", "V_corr= -277.94686\n", "ibin= 1829 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 53.0 188.0 -0.006 0.041 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0173 4.00e-09\n", "V_corr= -279.81449\n", "ibin= 1830 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 64.7 184.1 -0.045 0.010 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+04 0.0444 4.32e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -268.06247\n", "ibin= 1831 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 71.9 167.5 0.004 0.014 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 0.0226 3.63e-09\n", "V_corr= -260.92837\n", "ibin= 1832 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 57.8 159.9 -0.010 -0.005 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0268 4.22e-09\n", "V_corr= -274.97061\n", "ibin= 1833 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 76.3 162.4 -0.040 0.001 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0963 4.01e-09\n", "V_corr= -256.46424\n", "ibin= 1834 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 189 64.8 172.0 -0.077 -0.001 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00469 4.11e-09\n", "V_corr= -267.95939\n", "ibin= 1835 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 74.0 157.0 -0.023 0.108 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00597 3.69e-09\n", "V_corr= -258.78767\n", "ibin= 1836 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 77.4 158.0 -0.052 0.043 0.000 0.000 0.691 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00586 3.62e-09\n", "V_corr= -255.40653\n", "ibin= 1837 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 93.4 169.1 -0.064 0.028 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0471 3.38e-09\n", "V_corr= -239.36042\n", "ibin= 1838 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 83.1 164.8 -0.047 0.084 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0571 3.31e-09\n", "V_corr= -249.72866\n", "ibin= 1839 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 97.3 176.8 -0.036 -0.029 0.000 0.000 0.302 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0695 3.05e-09\n", "V_corr= -235.55680\n", "ibin= 1840 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 74.1 163.5 -0.057 0.042 0.000 0.000 0.308 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0966 3.04e-09\n", "V_corr= -258.66500\n", "ibin= 1841 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 71.3 158.1 -0.058 -0.018 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0891 2.64e-09\n", "V_corr= -261.49626\n", "ibin= 1842 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 87.6 176.7 -0.055 -0.007 0.000 0.000 0.282 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0741 2.73e-09\n", "V_corr= -245.18740\n", "ibin= 1843 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 92.0 136.6 -0.072 0.008 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.122 2.25e-09\n", "V_corr= -240.85353\n", "ibin= 1844 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 70.4 135.3 0.066 0.050 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 2.07e-09\n", "V_corr= -262.41098\n", "ibin= 1845 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 81.8 171.1 0.006 0.031 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.184 2.32e-09\n", "V_corr= -250.98768\n", "ibin= 1846 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 119.1 153.1 -0.054 0.007 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 9.74e+03 0.0904 1.24e-09\n", "V_corr= -213.73933\n", "ibin= 1847 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 92.0 138.0 -0.028 0.029 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 0.0681 1.65e-09\n", "V_corr= -240.84719\n", "ibin= 1848 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 96.4 148.7 -0.020 0.013 0.000 0.000 0.728 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.0555 1.12e-09\n", "V_corr= -236.41071\n", "ibin= 1849 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 85.9 178.1 0.028 0.034 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0290 1.64e-09\n", "V_corr= -246.88212\n", "ibin= 1850 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 86.7 149.9 0.017 0.056 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 2.33e+03 0.421 3.21e-10\n", "V_corr= -246.15714\n", "ibin= 1851 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 110.2 172.0 0.034 0.080 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.333 1.76e-09\n", "V_corr= -222.56130\n", "ibin= 1852 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 84.3 155.1 0.018 0.057 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00108 1.28e-09\n", "V_corr= -248.54747\n", "ibin= 1853 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 107.2 133.3 -0.028 -0.001 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 -0.134 7.65e-10\n", "V_corr= -225.57243\n", "ibin= 1854 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 106.4 159.1 -0.035 0.018 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0945 1.09e-09\n", "V_corr= -226.36474\n", "ibin= 1855 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 115.2 168.2 -0.045 -0.010 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 -0.178 7.89e-10\n", "V_corr= -217.61848\n", "ibin= 1856 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 102.1 169.2 -0.087 -0.004 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 9.83e-10\n", "V_corr= -230.66869\n", "ibin= 1857 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 107.1 162.4 0.019 -0.071 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.247 9.10e-10\n", "V_corr= -225.68713\n", "ibin= 1858 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 114.0 153.4 -0.014 0.058 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 0.0185 8.68e-10\n", "V_corr= -218.82641\n", "ibin= 1859 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 101.4 143.6 -0.059 -0.017 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0593 8.76e-10\n", "V_corr= -231.40609\n", "ibin= 1860 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 79.5 210.4 -0.092 0.041 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 2.02e-09\n", "V_corr= -253.33240\n", "ibin= 1861 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 111.0 186.4 0.048 -0.025 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 0.206 9.04e-10\n", "V_corr= -221.77059\n", "ibin= 1862 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 96.2 128.9 -0.054 0.057 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.112 7.76e-10\n", "V_corr= -236.61992\n", "ibin= 1863 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1864 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1865 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -3.0 140.6 0.020 -0.010 0.000 0.000 0.782 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+03 0.333 5.73e-11\n", "V_corr= -335.81790\n", "ibin= 1866 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 -46.6 142.7 0.095 0.013 0.000 0.000 1.152 NaN\n", "Ages, Metallicities, Weights:\n", " 2.45e+03 0.291 1.38e-10\n", "V_corr= -379.45235\n", "ibin= 1867 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 21.6 62.1 0.001 0.001 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 3.40e+03 -0.794 9.71e-11\n", "V_corr= -311.17016\n", "ibin= 1868 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 74 -4.8 126.7 0.027 -0.004 0.000 0.000 1.164 NaN\n", "Ages, Metallicities, Weights:\n", " 6.19e+03 -0.162 2.62e-10\n", "V_corr= -337.63110\n", "ibin= 1869 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 -13.5 88.5 -0.010 0.021 0.000 0.000 4.082 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 -0.839 3.22e-10\n", "V_corr= -346.32366\n", "ibin= 1870 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 20.1 215.5 0.042 0.060 0.000 0.000 2.196 NaN\n", "Ages, Metallicities, Weights:\n", " 7.82e+03 0.174 4.72e-10\n", "V_corr= -312.69918\n", "ibin= 1871 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 10.6 151.8 0.038 0.023 0.000 0.000 1.806 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.208 7.26e-10\n", "V_corr= -322.19736\n", "ibin= 1872 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 8.1 190.2 0.091 0.038 0.000 0.000 1.078 NaN\n", "Ages, Metallicities, Weights:\n", " 4.35e+03 0.180 2.76e-10\n", "V_corr= -324.71546\n", "ibin= 1873 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -33.6 144.3 0.051 0.038 0.000 0.000 0.841 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 7.78e-10\n", "V_corr= -366.36008\n", "ibin= 1874 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -4.9 120.1 -0.012 0.023 0.000 0.000 1.066 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.300 7.85e-10\n", "V_corr= -337.74793\n", "ibin= 1875 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 252 10.9 75.2 0.007 0.025 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.650 5.89e-10\n", "V_corr= -321.87487\n", "ibin= 1876 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -2.9 125.2 -0.036 0.075 0.000 0.000 0.777 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.332 7.16e-10\n", "V_corr= -335.72138\n", "ibin= 1877 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 238 -12.4 147.6 0.048 0.125 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+03 0.364 1.70e-10\n", "V_corr= -345.24692\n", "ibin= 1878 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -18.2 170.2 0.043 0.027 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 4.54e+03 0.0882 3.65e-10\n", "V_corr= -351.03051\n", "ibin= 1879 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 26.6 124.5 -0.024 0.050 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 5.35e+03 -0.336 3.34e-10\n", "V_corr= -306.16237\n", "ibin= 1880 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 0.3 134.6 -0.003 0.063 0.000 0.000 1.150 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.375 9.49e-10\n", "V_corr= -332.53274\n", "ibin= 1881 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -4.4 145.5 0.025 0.109 0.000 0.000 0.998 NaN\n", "Ages, Metallicities, Weights:\n", " 8.17e+03 0.125 7.51e-10\n", "V_corr= -337.21806\n", "ibin= 1882 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -11.9 130.1 0.027 0.038 0.000 0.000 0.713 NaN\n", "Ages, Metallicities, Weights:\n", " 2.19e+03 0.298 2.60e-10\n", "V_corr= -344.74962\n", "ibin= 1883 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -7.5 164.6 -0.013 0.068 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 9.45e+03 0.159 9.94e-10\n", "V_corr= -340.29627\n", "ibin= 1884 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 20.7 145.1 -0.014 0.015 0.000 0.000 0.840 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.143 1.50e-09\n", "V_corr= -312.08374\n", "ibin= 1885 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 17.1 170.1 0.051 0.094 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 7.91e+03 0.0667 9.46e-10\n", "V_corr= -315.75608\n", "ibin= 1886 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 10.3 164.7 0.008 0.058 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0346 1.90e-09\n", "V_corr= -322.54475\n", "ibin= 1887 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 12.7 162.8 -0.042 0.013 0.000 0.000 0.891 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.138 1.87e-09\n", "V_corr= -320.13017\n", "ibin= 1888 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 42.3 175.5 -0.038 -0.002 0.000 0.000 0.393 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0704 2.07e-09\n", "V_corr= -290.54619\n", "ibin= 1889 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 30.1 149.7 -0.030 0.056 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 -0.00146 1.67e-09\n", "V_corr= -302.75314\n", "ibin= 1890 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 31.3 155.6 -0.041 0.009 0.000 0.000 0.743 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.160 2.37e-09\n", "V_corr= -301.50992\n", "ibin= 1891 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 35.9 148.1 -0.081 0.010 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 9.27e+03 0.00528 1.61e-09\n", "V_corr= -296.95316\n", "ibin= 1892 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 37.6 162.1 -0.016 -0.013 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.265 2.70e-09\n", "V_corr= -295.18843\n", "ibin= 1893 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 28.3 173.4 -0.031 0.038 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00535 3.40e-09\n", "V_corr= -304.48654\n", "ibin= 1894 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 31.2 158.3 0.017 0.038 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0911 3.52e-09\n", "V_corr= -301.63453\n", "ibin= 1895 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 55.5 151.3 -0.030 0.063 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.0854 3.46e-09\n", "V_corr= -277.31760\n", "ibin= 1896 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 34.6 191.8 -0.048 0.045 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0701 4.51e-09\n", "V_corr= -298.19315\n", "ibin= 1897 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 49.3 165.5 -0.087 0.071 0.000 0.000 0.806 NaN\n", "Ages, Metallicities, Weights:\n", " 2.60e+03 0.457 1.07e-09\n", "V_corr= -283.53046\n", "ibin= 1898 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 60.9 185.3 -0.054 -0.008 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0472 4.80e-09\n", "V_corr= -271.95432\n", "ibin= 1899 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 54.6 189.5 -0.054 0.019 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 0.185 4.23e-09\n", "V_corr= -278.25207\n", "ibin= 1900 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 65.0 156.8 -0.086 0.087 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00265 4.68e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -267.82199\n", "ibin= 1901 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 64.2 161.9 -0.045 -0.046 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.176 4.45e-09\n", "V_corr= -268.58757\n", "ibin= 1902 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 189 71.6 174.8 -0.025 -0.024 0.000 0.000 1.015 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0115 4.75e-09\n", "V_corr= -261.18116\n", "ibin= 1903 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 74.5 173.8 -0.046 0.042 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0108 4.38e-09\n", "V_corr= -258.34356\n", "ibin= 1904 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 55.8 187.6 -0.046 0.029 0.000 0.000 0.678 NaN\n", "Ages, Metallicities, Weights:\n", " 4.30e+03 0.477 1.76e-09\n", "V_corr= -276.97655\n", "ibin= 1905 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 69.8 164.7 -0.081 0.094 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.161 4.23e-09\n", "V_corr= -263.02695\n", "ibin= 1906 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 71.4 189.5 -0.087 0.077 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 0.272 4.24e-09\n", "V_corr= -261.45327\n", "ibin= 1907 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 61.2 159.4 -0.072 0.054 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 4.75e+03 0.189 1.15e-09\n", "V_corr= -271.62694\n", "ibin= 1908 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 64.7 175.0 -0.042 0.071 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 3.25e-09\n", "V_corr= -268.15571\n", "ibin= 1909 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 76.8 184.3 -0.065 0.027 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.182 3.43e-09\n", "V_corr= -256.03441\n", "ibin= 1910 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 83.1 178.3 -0.028 0.019 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.159 3.13e-09\n", "V_corr= -249.67941\n", "ibin= 1911 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 95.6 144.1 -0.082 0.083 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.106 2.41e-09\n", "V_corr= -237.23855\n", "ibin= 1912 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 97.5 176.0 -0.045 0.013 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+03 0.530 4.67e-10\n", "V_corr= -235.27446\n", "ibin= 1913 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 98.3 156.2 -0.015 0.036 0.000 0.000 0.372 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0428 2.33e-09\n", "V_corr= -234.51456\n", "ibin= 1914 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 91.8 170.8 -0.029 0.032 0.000 0.000 0.772 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0444 2.07e-09\n", "V_corr= -240.96558\n", "ibin= 1915 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 91.9 178.0 -0.025 0.019 0.000 0.000 0.760 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00929 1.96e-09\n", "V_corr= -240.92967\n", "ibin= 1916 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 73 104.2 151.2 -0.073 -0.014 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.123 1.76e-09\n", "V_corr= -228.58626\n", "ibin= 1917 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 119.9 156.0 -0.058 -0.016 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.101 1.64e-09\n", "V_corr= -212.94132\n", "ibin= 1918 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 101.5 176.3 -0.035 -0.002 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0587 1.59e-09\n", "V_corr= -231.30164\n", "ibin= 1919 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 97.2 127.7 -0.027 0.052 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0213 1.47e-09\n", "V_corr= -235.56243\n", "ibin= 1920 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 103.1 155.7 -0.002 0.025 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0149 1.41e-09\n", "V_corr= -229.70710\n", "ibin= 1921 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 100.7 171.2 -0.029 0.048 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 4.94e+03 0.263 5.00e-10\n", "V_corr= -232.06410\n", "ibin= 1922 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 94.5 173.3 0.014 -0.031 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 3.81e+03 0.290 3.90e-10\n", "V_corr= -238.35133\n", "ibin= 1923 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 105.0 166.1 0.012 -0.030 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 1.08e-09\n", "V_corr= -227.79169\n", "ibin= 1924 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 112.1 150.8 0.011 0.017 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0202 1.15e-09\n", "V_corr= -220.68827\n", "ibin= 1925 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 115.3 171.1 0.036 0.033 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 0.283 1.25e-09\n", "V_corr= -217.53909\n", "ibin= 1926 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 119.5 134.5 0.026 -0.008 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.288 8.42e-10\n", "V_corr= -213.33548\n", "ibin= 1927 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 128.7 153.8 0.065 -0.069 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 2.71e+03 -0.0377 1.53e-10\n", "V_corr= -204.08439\n", "ibin= 1928 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 99.2 165.6 0.034 -0.017 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+03 0.521 1.51e-10\n", "V_corr= -233.60154\n", "ibin= 1929 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 66.5 172.8 0.024 0.058 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+03 0.506 1.14e-10\n", "V_corr= -266.31472\n", "ibin= 1930 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 90.7 140.8 0.026 0.061 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 2.82e+03 0.330 1.96e-10\n", "V_corr= -242.09981\n", "ibin= 1931 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 140.4 145.1 -0.027 0.107 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+03 0.685 1.58e-10\n", "V_corr= -192.40592\n", "ibin= 1932 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1933 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 1934 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -29.2 169.1 -0.011 0.035 0.000 0.000 0.949 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.673 7.97e-11\n", "V_corr= -362.01834\n", "ibin= 1935 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -33.2 91.8 -0.002 -0.017 0.000 0.000 2.200 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 -0.219 8.18e-11\n", "V_corr= -366.00690\n", "ibin= 1936 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 4.3 175.8 0.011 -0.018 0.000 0.000 1.773 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.352 5.74e-10\n", "V_corr= -328.51881\n", "ibin= 1937 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -49.0 149.9 0.036 0.033 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 6.39e-10\n", "V_corr= -381.81152\n", "ibin= 1938 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -20.5 156.6 0.047 -0.006 0.000 0.000 1.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+03 0.367 8.81e-11\n", "V_corr= -353.29434\n", "ibin= 1939 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -26.5 129.6 -0.001 0.032 0.000 0.000 0.780 NaN\n", "Ages, Metallicities, Weights:\n", " 6.64e+03 -0.154 3.00e-10\n", "V_corr= -359.27562\n", "ibin= 1940 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -26.5 110.0 0.057 0.036 0.000 0.000 1.110 NaN\n", "Ages, Metallicities, Weights:\n", " 5.19e+03 -0.388 2.23e-10\n", "V_corr= -359.29208\n", "ibin= 1941 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -17.0 150.0 0.031 0.008 0.000 0.000 1.197 NaN\n", "Ages, Metallicities, Weights:\n", " 7.38e+03 -0.318 3.18e-10\n", "V_corr= -349.78106\n", "ibin= 1942 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 198 -18.0 196.2 -0.059 0.024 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+03 0.536 1.65e-10\n", "V_corr= -350.82256\n", "ibin= 1943 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 13.3 169.1 -0.006 0.051 0.000 0.000 1.077 NaN\n", "Ages, Metallicities, Weights:\n", " 9.29e+03 -0.0695 5.12e-10\n", "V_corr= -319.45951\n", "ibin= 1944 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 8.0 171.6 0.070 -0.024 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.432 7.79e-10\n", "V_corr= -324.79409\n", "ibin= 1945 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 12.5 182.4 0.047 0.105 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+03 0.176 1.73e-10\n", "V_corr= -320.26585\n", "ibin= 1946 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -0.0 166.8 0.100 0.073 0.000 0.000 0.677 NaN\n", "Ages, Metallicities, Weights:\n", " 2.91e+03 0.186 2.45e-10\n", "V_corr= -332.84096\n", "ibin= 1947 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 106 -3.9 134.3 0.007 -0.021 0.000 0.000 0.769 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.357 8.11e-10\n", "V_corr= -336.70917\n", "ibin= 1948 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 12.8 146.6 -0.009 0.041 0.000 0.000 0.778 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 1.11e-09\n", "V_corr= -320.00327\n", "ibin= 1949 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -1.6 114.3 -0.022 0.044 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 3.92e+03 -0.198 3.04e-10\n", "V_corr= -334.37494\n", "ibin= 1950 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 6.7 131.5 0.017 0.056 0.000 0.000 0.974 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.176 1.24e-09\n", "V_corr= -326.07844\n", "ibin= 1951 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 16.4 156.3 -0.048 0.020 0.000 0.000 0.771 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.141 1.37e-09\n", "V_corr= -316.44938\n", "ibin= 1952 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -2.2 120.6 -0.010 0.050 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.297 1.29e-09\n", "V_corr= -334.96599\n", "ibin= 1953 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -0.7 120.5 -0.061 0.014 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.331 1.38e-09\n", "V_corr= -333.52847\n", "ibin= 1954 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -0.9 119.4 -0.039 0.108 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.347 1.20e-09\n", "V_corr= -333.74981\n", "ibin= 1955 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 14.7 182.0 -0.019 0.015 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0254 2.05e-09\n", "V_corr= -318.07961\n", "ibin= 1956 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -8.3 162.8 0.008 0.062 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 9.07e+03 0.284 1.52e-09\n", "V_corr= -341.07499\n", "ibin= 1957 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 8.7 151.0 -0.018 0.041 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+04 -0.0629 1.66e-09\n", "V_corr= -324.08814\n", "ibin= 1958 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 16.9 147.0 -0.060 0.052 0.000 0.000 0.871 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.0248 1.56e-09\n", "V_corr= -315.85887\n", "ibin= 1959 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 50.4 165.7 -0.046 0.035 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0900 2.69e-09\n", "V_corr= -282.38389\n", "ibin= 1960 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 32.5 160.7 0.011 -0.020 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.165 2.93e-09\n", "V_corr= -300.31228\n", "ibin= 1961 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 28.6 179.6 -0.063 -0.006 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 3.79e-09\n", "V_corr= -304.22916\n", "ibin= 1962 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 26.1 172.9 -0.061 -0.011 0.000 0.000 0.711 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.0906 3.63e-09\n", "V_corr= -306.71481\n", "ibin= 1963 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 33.3 191.4 -0.054 0.071 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.251 4.83e-09\n", "V_corr= -299.53805\n", "ibin= 1964 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 55.1 169.3 -0.038 -0.007 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.151 4.01e-09\n", "V_corr= -277.73494\n", "ibin= 1965 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 49.1 176.4 -0.045 0.092 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0131 4.76e-09\n", "V_corr= -283.73777\n", "ibin= 1966 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 45.9 172.2 -0.012 0.068 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0123 5.01e-09\n", "V_corr= -286.90038\n", "ibin= 1967 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 50.1 161.1 -0.021 0.025 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.109 3.41e-09\n", "V_corr= -282.70417\n", "ibin= 1968 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 65.7 180.3 -0.065 0.029 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0579 5.69e-09\n", "V_corr= -267.10631\n", "ibin= 1969 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 58.3 169.2 -0.042 0.073 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0577 5.51e-09\n", "V_corr= -274.49848\n", "ibin= 1970 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 189 65.0 163.9 -0.115 0.097 0.000 0.000 0.658 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0285 5.21e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -267.80662\n", "ibin= 1971 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 72.7 171.0 -0.124 0.086 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 0.0563 5.02e-09\n", "V_corr= -260.07867\n", "ibin= 1972 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 76.5 156.7 -0.038 0.064 0.000 0.000 0.334 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0144 4.68e-09\n", "V_corr= -256.30744\n", "ibin= 1973 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 70.0 169.1 -0.040 0.033 0.000 0.000 0.580 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0496 4.81e-09\n", "V_corr= -262.77534\n", "ibin= 1974 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 78.2 168.7 -0.072 0.033 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 9.28e+03 0.194 2.70e-09\n", "V_corr= -254.59513\n", "ibin= 1975 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 78.0 165.2 -0.076 -0.044 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 -0.0743 2.39e-09\n", "V_corr= -254.82219\n", "ibin= 1976 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 73.5 162.0 -0.086 0.023 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+04 0.0276 2.75e-09\n", "V_corr= -259.31373\n", "ibin= 1977 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 83.7 169.3 -0.084 0.090 0.000 0.000 0.367 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.102 3.37e-09\n", "V_corr= -249.13227\n", "ibin= 1978 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 77.5 167.3 -0.019 0.108 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.123 3.27e-09\n", "V_corr= -255.33167\n", "ibin= 1979 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 68.6 169.2 0.022 0.074 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 0.174 2.28e-09\n", "V_corr= -264.21403\n", "ibin= 1980 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 84.3 171.1 -0.027 -0.031 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0906 2.67e-09\n", "V_corr= -248.49377\n", "ibin= 1981 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 79.8 152.6 -0.066 0.118 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0603 2.46e-09\n", "V_corr= -253.01308\n", "ibin= 1982 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 79.8 164.7 0.005 0.016 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0127 2.33e-09\n", "V_corr= -252.98835\n", "ibin= 1983 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 81.3 198.2 -0.062 0.034 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.265 2.57e-09\n", "V_corr= -251.53139\n", "ibin= 1984 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 116.4 158.1 -0.060 0.019 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.152 1.83e-09\n", "V_corr= -216.41455\n", "ibin= 1985 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 102.6 154.9 -0.094 -0.013 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0671 1.83e-09\n", "V_corr= -230.23598\n", "ibin= 1986 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 99.0 173.4 -0.100 0.044 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 9.88e+03 0.106 1.14e-09\n", "V_corr= -233.82060\n", "ibin= 1987 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 112.1 165.7 -0.011 0.003 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 6.73e+03 0.146 7.90e-10\n", "V_corr= -220.72818\n", "ibin= 1988 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 98.3 147.2 0.040 0.015 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.0237 1.43e-09\n", "V_corr= -234.51309\n", "ibin= 1989 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 97.6 139.7 0.012 0.013 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0558 1.35e-09\n", "V_corr= -235.25025\n", "ibin= 1990 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 114.3 163.8 0.035 0.035 0.000 0.000 0.551 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 1.22e-09\n", "V_corr= -218.47998\n", "ibin= 1991 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 89.5 180.2 -0.062 0.033 0.000 0.000 0.295 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00923 1.25e-09\n", "V_corr= -243.31906\n", "ibin= 1992 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 89.7 139.8 -0.027 -0.021 0.000 0.000 0.315 NaN\n", "Ages, Metallicities, Weights:\n", " 7.04e+03 0.0112 5.57e-10\n", "V_corr= -243.10464\n", "ibin= 1993 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 92.5 166.4 -0.014 -0.013 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 985. 0.614 1.19e-10\n", "V_corr= -240.31861\n", "ibin= 1994 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 94.7 158.9 0.006 0.010 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0390 1.13e-09\n", "V_corr= -238.10212\n", "ibin= 1995 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 96.2 163.7 0.027 0.012 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.132 8.49e-10\n", "V_corr= -236.62142\n", "ibin= 1996 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 130.3 174.2 0.008 0.029 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.156 1.02e-09\n", "V_corr= -202.53473\n", "ibin= 1997 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 96.4 188.4 -0.037 0.012 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0746 1.00e-09\n", "V_corr= -236.43355\n", "ibin= 1998 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 109.9 112.4 0.018 0.016 0.000 0.000 0.918 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.424 6.57e-10\n", "V_corr= -222.86856\n", "ibin= 1999 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 126.2 137.9 0.014 0.055 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+03 0.513 1.30e-10\n", "V_corr= -206.56958\n", "ibin= 2000 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 160.4 173.8 -0.033 0.064 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0744 8.66e-10\n", "V_corr= -172.44162\n", "ibin= 2001 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2002 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2003 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -14.4 194.3 -0.027 0.068 0.000 0.000 1.037 NaN\n", "Ages, Metallicities, Weights:\n", " 3.16e+03 0.319 1.75e-10\n", "V_corr= -347.22790\n", "ibin= 2004 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -51.1 136.7 0.014 -0.033 0.000 0.000 1.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.629 3.75e-10\n", "V_corr= -383.87215\n", "ibin= 2005 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 -66.9 158.5 -0.022 0.075 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 2.45e+03 0.309 1.48e-10\n", "V_corr= -399.74212\n", "ibin= 2006 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -0.7 195.5 0.016 -0.015 0.000 0.000 0.886 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.164 6.70e-10\n", "V_corr= -333.54129\n", "ibin= 2007 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -26.9 131.3 0.009 0.072 0.000 0.000 0.908 NaN\n", "Ages, Metallicities, Weights:\n", " 6.66e+03 -0.0517 3.20e-10\n", "V_corr= -359.73842\n", "ibin= 2008 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -28.2 111.8 0.043 0.014 0.000 0.000 1.226 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+03 -0.243 6.93e-11\n", "V_corr= -360.99913\n", "ibin= 2009 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -9.1 148.0 0.042 -0.022 0.000 0.000 0.956 NaN\n", "Ages, Metallicities, Weights:\n", " 2.43e+03 0.136 1.65e-10\n", "V_corr= -341.93300\n", "ibin= 2010 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -38.3 86.8 -0.008 0.019 0.000 0.000 0.934 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.635 4.79e-10\n", "V_corr= -371.08032\n", "ibin= 2011 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 3.8 124.1 -0.004 -0.008 0.000 0.000 1.061 NaN\n", "Ages, Metallicities, Weights:\n", " 2.14e+03 -0.188 1.27e-10\n", "V_corr= -328.99225\n", "ibin= 2012 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -13.1 105.2 0.013 -0.013 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.603 6.30e-10\n", "V_corr= -345.94905\n", "ibin= 2013 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 -6.4 166.0 0.015 0.132 0.000 0.000 1.307 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 9.31e-10\n", "V_corr= -339.19755\n", "ibin= 2014 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -21.8 156.1 0.020 0.020 0.000 0.000 0.844 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 0.393 2.02e-10\n", "V_corr= -354.62504\n", "ibin= 2015 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -4.8 131.8 0.008 0.047 0.000 0.000 0.742 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 0.0122 1.58e-10\n", "V_corr= -337.62731\n", "ibin= 2016 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -9.5 111.6 -0.014 -0.033 0.000 0.000 1.109 NaN\n", "Ages, Metallicities, Weights:\n", " 8.97e+03 -0.748 4.06e-10\n", "V_corr= -342.26733\n", "ibin= 2017 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 106 -7.2 135.2 -0.028 0.006 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.469 7.79e-10\n", "V_corr= -340.00852\n", "ibin= 2018 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 10.6 157.5 0.062 0.025 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.208 1.25e-09\n", "V_corr= -322.22571\n", "ibin= 2019 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 6.3 102.4 -0.024 0.049 0.000 0.000 0.991 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.356 1.14e-09\n", "V_corr= -326.47414\n", "ibin= 2020 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 3.6 158.2 -0.016 0.011 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.129 1.46e-09\n", "V_corr= -329.22493\n", "ibin= 2021 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -11.9 155.3 -0.018 0.008 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 4.22e+03 0.00868 4.80e-10\n", "V_corr= -344.67018\n", "ibin= 2022 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -5.2 168.4 -0.010 -0.007 0.000 0.000 0.841 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0492 1.81e-09\n", "V_corr= -338.04128\n", "ibin= 2023 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -4.4 145.7 -0.026 0.106 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.145 1.45e-09\n", "V_corr= -337.24437\n", "ibin= 2024 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 5.6 154.9 -0.089 0.038 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 0.329 3.80e-10\n", "V_corr= -327.16585\n", "ibin= 2025 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 13.9 156.2 -0.001 0.090 0.000 0.000 0.845 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.0139 1.57e-09\n", "V_corr= -318.88361\n", "ibin= 2026 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 9.5 145.9 0.033 0.054 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.143 2.27e-09\n", "V_corr= -323.34722\n", "ibin= 2027 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 4.8 178.9 -0.015 0.046 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 0.0148 2.66e-09\n", "V_corr= -327.98064\n", "ibin= 2028 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 6.3 150.4 -0.014 0.117 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.121 3.20e-09\n", "V_corr= -326.46575\n", "ibin= 2029 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 17.5 181.5 0.010 0.030 0.000 0.000 0.824 NaN\n", "Ages, Metallicities, Weights:\n", " 9.22e+03 0.166 2.29e-09\n", "V_corr= -315.26737\n", "ibin= 2030 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 13.8 165.2 -0.012 0.103 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 0.0890 2.74e-09\n", "V_corr= -319.01630\n", "ibin= 2031 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 42.6 180.8 -0.059 -0.002 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0412 4.22e-09\n", "V_corr= -290.17397\n", "ibin= 2032 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 32.2 163.6 -0.027 0.072 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 7.95e+03 0.0869 2.46e-09\n", "V_corr= -300.62204\n", "ibin= 2033 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 45.1 172.6 -0.016 0.040 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.0237 3.67e-09\n", "V_corr= -287.69756\n", "ibin= 2034 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 36.8 188.1 -0.084 -0.013 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0136 5.72e-09\n", "V_corr= -295.99068\n", "ibin= 2035 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 39.9 184.9 -0.073 0.099 0.000 0.000 0.687 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 0.331 7.30e-09\n", "V_corr= -292.91209\n", "ibin= 2036 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 50.5 177.1 -0.051 0.064 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0822 6.41e-09\n", "V_corr= -282.31812\n", "ibin= 2037 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 43.3 189.1 -0.067 0.027 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.216 5.29e-09\n", "V_corr= -289.50390\n", "ibin= 2038 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 56.0 172.7 -0.013 0.044 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0194 6.22e-09\n", "V_corr= -276.76485\n", "ibin= 2039 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 63.1 184.3 -0.041 0.059 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.132 6.39e-09\n", "V_corr= -269.72878\n", "ibin= 2040 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 70.7 169.1 -0.088 0.107 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0925 5.79e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -262.10304\n", "ibin= 2041 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 70.4 150.0 -0.031 0.036 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.118 4.91e-09\n", "V_corr= -262.36935\n", "ibin= 2042 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 57.5 189.9 -0.013 0.064 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.163 5.33e-09\n", "V_corr= -275.34636\n", "ibin= 2043 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 62.4 181.2 -0.054 0.048 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.120 4.74e-09\n", "V_corr= -270.45246\n", "ibin= 2044 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 75.0 175.4 -0.002 0.014 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0210 4.12e-09\n", "V_corr= -257.84798\n", "ibin= 2045 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 74.5 163.0 0.017 0.033 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00778 3.84e-09\n", "V_corr= -258.26224\n", "ibin= 2046 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 71.9 170.4 0.010 0.010 0.000 0.000 0.355 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 -0.00935 2.68e-09\n", "V_corr= -260.93658\n", "ibin= 2047 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 89.1 168.8 -0.083 0.070 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.187 3.55e-09\n", "V_corr= -243.66607\n", "ibin= 2048 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 76.6 147.9 -0.065 0.046 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 4.13e+03 0.147 8.82e-10\n", "V_corr= -256.20322\n", "ibin= 2049 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 84.7 172.5 0.000 0.048 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.185 3.02e-09\n", "V_corr= -248.11024\n", "ibin= 2050 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 91.9 167.3 -0.003 0.061 0.000 0.000 0.829 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.143 2.71e-09\n", "V_corr= -240.91503\n", "ibin= 2051 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 81.8 149.1 -0.016 -0.039 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 3.65e+03 0.146 6.46e-10\n", "V_corr= -250.97005\n", "ibin= 2052 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 90.5 186.7 -0.027 -0.020 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 0.129 2.37e-09\n", "V_corr= -242.31142\n", "ibin= 2053 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 82.1 161.4 -0.025 0.044 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 6.12e+03 0.186 9.23e-10\n", "V_corr= -250.72492\n", "ibin= 2054 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 91.8 162.1 0.016 -0.023 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 7.04e+03 -0.0358 8.46e-10\n", "V_corr= -241.02281\n", "ibin= 2055 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 83.0 158.3 -0.057 0.002 0.000 0.000 0.673 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0703 1.67e-09\n", "V_corr= -249.83680\n", "ibin= 2056 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 91.1 182.6 0.057 0.027 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0439 1.68e-09\n", "V_corr= -241.68473\n", "ibin= 2057 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 105.5 150.9 0.073 0.038 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0774 1.39e-09\n", "V_corr= -227.33989\n", "ibin= 2058 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 89.5 153.9 -0.011 0.021 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 6.79e+03 0.0386 5.92e-10\n", "V_corr= -243.30520\n", "ibin= 2059 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 103.1 160.5 -0.029 0.095 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.674 3.12e-09\n", "V_corr= -229.71098\n", "ibin= 2060 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 104.1 153.5 -0.045 0.047 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.0350 8.07e-10\n", "V_corr= -228.73633\n", "ibin= 2061 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 108.1 149.1 0.003 -0.068 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.188 1.13e-09\n", "V_corr= -224.75794\n", "ibin= 2062 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 99.1 136.3 0.025 -0.007 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.254 9.77e-10\n", "V_corr= -233.74520\n", "ibin= 2063 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 112.6 116.4 -0.032 0.042 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.164 9.01e-10\n", "V_corr= -220.18288\n", "ibin= 2064 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 132.4 159.6 0.017 0.056 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 8.30e-10\n", "V_corr= -200.38299\n", "ibin= 2065 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 109.6 132.9 0.014 0.011 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.228 8.02e-10\n", "V_corr= -223.20935\n", "ibin= 2066 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 93.7 137.9 -0.052 -0.026 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 5.66e+03 0.158 3.87e-10\n", "V_corr= -239.12786\n", "ibin= 2067 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 126.5 94.2 -0.009 0.020 0.000 0.000 0.263 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.333 7.08e-10\n", "V_corr= -206.29275\n", "ibin= 2068 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 100.1 139.9 0.023 0.050 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+03 0.345 8.69e-11\n", "V_corr= -232.72803\n", "ibin= 2069 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 133.9 140.1 -0.000 -0.027 0.000 0.000 0.352 NaN\n", "Ages, Metallicities, Weights:\n", " 5.37e+03 -0.226 2.54e-10\n", "V_corr= -198.91785\n", "ibin= 2070 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2071 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2072 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -12.0 97.4 -0.021 0.023 0.000 0.000 1.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.531 4.59e-10\n", "V_corr= -344.84229\n", "ibin= 2073 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 -34.2 140.2 0.017 0.011 0.000 0.000 3.091 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+03 0.684 8.52e-11\n", "V_corr= -367.03474\n", "ibin= 2074 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 3.9 147.2 -0.011 0.037 0.000 0.000 1.613 NaN\n", "Ages, Metallicities, Weights:\n", " 3.80e+03 0.0547 1.93e-10\n", "V_corr= -328.94373\n", "ibin= 2075 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 328 -21.6 186.7 0.033 0.078 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 2.35e+03 0.596 2.03e-10\n", "V_corr= -354.42747\n", "ibin= 2076 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -13.1 157.5 0.015 0.032 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.411 6.02e-10\n", "V_corr= -345.92470\n", "ibin= 2077 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -19.8 167.1 0.007 -0.017 0.000 0.000 1.088 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 0.0127 1.80e-10\n", "V_corr= -352.61514\n", "ibin= 2078 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -52.2 136.8 0.011 0.020 0.000 0.000 0.878 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.401 6.78e-10\n", "V_corr= -384.98887\n", "ibin= 2079 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -30.3 141.6 -0.073 0.096 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.188 6.80e-10\n", "V_corr= -363.14181\n", "ibin= 2080 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 69 -1.1 99.8 -0.004 0.029 0.000 0.000 0.951 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.404 7.45e-10\n", "V_corr= -333.86981\n", "ibin= 2081 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 15.7 183.6 0.100 0.071 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+04 0.00979 7.89e-10\n", "V_corr= -317.11507\n", "ibin= 2082 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 165 -6.7 64.0 0.003 0.025 0.000 0.000 0.869 NaN\n", "Ages, Metallicities, Weights:\n", " 6.29e+03 -0.760 2.59e-10\n", "V_corr= -339.51232\n", "ibin= 2083 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -2.9 174.9 -0.018 -0.010 0.000 0.000 1.091 NaN\n", "Ages, Metallicities, Weights:\n", " 7.15e+03 0.122 6.23e-10\n", "V_corr= -335.68558\n", "ibin= 2084 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -4.6 147.4 0.058 0.078 0.000 0.000 0.668 NaN\n", "Ages, Metallicities, Weights:\n", " 7.89e+03 0.205 7.44e-10\n", "V_corr= -337.42771\n", "ibin= 2085 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 8.0 130.8 -0.018 0.034 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.273 1.10e-09\n", "V_corr= -324.80945\n", "ibin= 2086 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 -7.3 169.9 0.062 0.088 0.000 0.000 0.817 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 0.689 2.83e-09\n", "V_corr= -340.11250\n", "ibin= 2087 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 106 7.0 103.5 -0.049 0.070 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.286 9.56e-10\n", "V_corr= -325.83459\n", "ibin= 2088 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -1.2 136.7 -0.089 0.057 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0805 1.47e-09\n", "V_corr= -334.00850\n", "ibin= 2089 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -12.2 131.1 0.072 0.078 0.000 0.000 0.754 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.257 1.36e-09\n", "V_corr= -345.00029\n", "ibin= 2090 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 5.5 149.6 -0.041 0.042 0.000 0.000 1.171 NaN\n", "Ages, Metallicities, Weights:\n", " 2.88e+03 0.166 3.86e-10\n", "V_corr= -327.35406\n", "ibin= 2091 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 4.9 168.4 0.012 0.059 0.000 0.000 0.746 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.0425 1.42e-09\n", "V_corr= -327.95460\n", "ibin= 2092 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 9.0 164.0 -0.059 0.023 0.000 0.000 0.646 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.0897 1.64e-09\n", "V_corr= -323.82343\n", "ibin= 2093 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 2.5 148.6 0.063 0.024 0.000 0.000 0.996 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.174 1.79e-09\n", "V_corr= -330.34932\n", "ibin= 2094 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 6.8 157.2 -0.006 0.033 0.000 0.000 0.892 NaN\n", "Ages, Metallicities, Weights:\n", " 9.41e+03 0.0284 1.44e-09\n", "V_corr= -326.00000\n", "ibin= 2095 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 9.1 190.5 -0.023 0.036 0.000 0.000 0.776 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 0.424 1.02e-09\n", "V_corr= -323.75316\n", "ibin= 2096 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 7.7 171.8 -0.062 0.076 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 6.22e+03 0.276 1.46e-09\n", "V_corr= -325.12607\n", "ibin= 2097 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 12.0 159.7 -0.008 0.036 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.199 2.98e-09\n", "V_corr= -320.78970\n", "ibin= 2098 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -4.3 215.1 -0.065 0.029 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+04 0.219 3.10e-09\n", "V_corr= -337.05892\n", "ibin= 2099 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 30.9 168.2 -0.027 0.060 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.139 3.91e-09\n", "V_corr= -301.93240\n", "ibin= 2100 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 38.0 188.4 -0.039 -0.012 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.0453 4.12e-09\n", "V_corr= -294.84624\n", "ibin= 2101 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 30.2 178.3 -0.060 0.053 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0747 5.43e-09\n", "V_corr= -302.61986\n", "ibin= 2102 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 34.0 175.8 -0.046 -0.008 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0988 5.65e-09\n", "V_corr= -298.81407\n", "ibin= 2103 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 39.4 168.1 0.019 0.032 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0227 6.38e-09\n", "V_corr= -293.45193\n", "ibin= 2104 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 38.8 181.3 -0.050 0.074 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0383 6.96e-09\n", "V_corr= -294.04910\n", "ibin= 2105 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 45.5 174.5 -0.043 0.011 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 0.0527 5.36e-09\n", "V_corr= -287.27534\n", "ibin= 2106 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 42.5 179.9 -0.051 0.039 0.000 0.000 0.574 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0802 7.58e-09\n", "V_corr= -290.34672\n", "ibin= 2107 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 52.8 185.1 -0.049 0.067 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 0.191 7.43e-09\n", "V_corr= -280.05244\n", "ibin= 2108 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 58.4 169.6 -0.075 0.016 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0284 6.96e-09\n", "V_corr= -274.42902\n", "ibin= 2109 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 57.3 179.1 -0.057 0.045 0.000 0.000 0.942 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 0.110 5.99e-09\n", "V_corr= -275.49659\n", "ibin= 2110 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 62.5 162.0 -0.055 0.034 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0302 5.54e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -270.26095\n", "ibin= 2111 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 70.2 151.5 -0.025 0.076 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0343 5.02e-09\n", "V_corr= -262.65179\n", "ibin= 2112 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 72.9 172.0 -0.049 0.041 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0986 5.12e-09\n", "V_corr= -259.88775\n", "ibin= 2113 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 72.6 169.5 -0.063 0.078 0.000 0.000 0.504 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 0.256 4.62e-09\n", "V_corr= -260.19792\n", "ibin= 2114 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 78.1 170.4 -0.058 0.044 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0668 4.07e-09\n", "V_corr= -254.74871\n", "ibin= 2115 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 60.7 192.1 -0.056 0.032 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 4.28e+03 0.500 1.54e-09\n", "V_corr= -272.06266\n", "ibin= 2116 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 71.4 172.1 -0.121 0.037 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 9.90e+03 0.214 2.41e-09\n", "V_corr= -261.45333\n", "ibin= 2117 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 73.5 167.3 -0.044 0.018 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 0.0845 2.10e-09\n", "V_corr= -259.30497\n", "ibin= 2118 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 76.0 175.9 -0.053 0.008 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0709 2.98e-09\n", "V_corr= -256.77919\n", "ibin= 2119 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 82.5 165.2 -0.101 0.063 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0103 2.47e-09\n", "V_corr= -250.35522\n", "ibin= 2120 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 74.4 174.8 -0.031 0.059 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.209 2.59e-09\n", "V_corr= -258.38570\n", "ibin= 2121 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 88.5 177.8 -0.050 0.030 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0790 2.32e-09\n", "V_corr= -244.33417\n", "ibin= 2122 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 81.0 164.6 -0.029 0.066 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.180 2.26e-09\n", "V_corr= -251.83506\n", "ibin= 2123 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 76.3 161.0 -0.020 0.053 0.000 0.000 0.898 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0144 1.90e-09\n", "V_corr= -256.53033\n", "ibin= 2124 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 82.7 149.4 0.045 0.034 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.139 1.61e-09\n", "V_corr= -250.08609\n", "ibin= 2125 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 105.8 137.3 -0.002 -0.006 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 5.46e+03 -0.116 5.29e-10\n", "V_corr= -226.99901\n", "ibin= 2126 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 91.1 169.2 0.042 0.006 0.000 0.000 0.281 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0465 1.34e-09\n", "V_corr= -241.72191\n", "ibin= 2127 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 105.9 147.1 0.089 -0.006 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.174 1.29e-09\n", "V_corr= -226.93772\n", "ibin= 2128 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 96.9 152.2 -0.012 0.087 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.128 1.17e-09\n", "V_corr= -235.88004\n", "ibin= 2129 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 104.0 109.9 -0.032 0.057 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.266 9.94e-10\n", "V_corr= -228.76004\n", "ibin= 2130 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 90.8 145.9 0.017 0.068 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+03 0.581 1.34e-10\n", "V_corr= -242.01748\n", "ibin= 2131 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 99.8 150.1 -0.084 0.057 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 3.79e+03 0.0766 2.72e-10\n", "V_corr= -233.02592\n", "ibin= 2132 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 87.2 158.2 -0.031 0.021 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0816 9.06e-10\n", "V_corr= -245.62434\n", "ibin= 2133 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 94.2 174.7 0.004 0.017 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00918 9.16e-10\n", "V_corr= -238.62438\n", "ibin= 2134 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 87.9 138.7 -0.031 -0.047 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 0.302 1.36e-10\n", "V_corr= -244.86227\n", "ibin= 2135 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 90.4 138.3 -0.012 0.054 0.000 0.000 0.356 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+03 0.668 1.20e-10\n", "V_corr= -242.45563\n", "ibin= 2136 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 99.9 119.1 -0.015 0.035 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.126 7.58e-10\n", "V_corr= -232.94106\n", "ibin= 2137 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 89.6 130.0 0.028 0.003 0.000 0.000 0.294 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 0.262 1.35e-10\n", "V_corr= -243.24354\n", "ibin= 2138 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 116.7 145.0 -0.005 0.108 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.178 8.37e-10\n", "V_corr= -216.07764\n", "ibin= 2139 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2140 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2141 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 -14.0 196.4 -0.032 0.079 0.000 0.000 1.432 NaN\n", "Ages, Metallicities, Weights:\n", " 2.58e+03 0.432 1.64e-10\n", "V_corr= -346.81142\n", "ibin= 2142 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -51.9 133.9 0.061 0.007 0.000 0.000 2.215 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.407 5.39e-10\n", "V_corr= -384.72594\n", "ibin= 2143 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 -43.1 176.6 -0.030 0.101 0.000 0.000 2.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+03 0.528 7.63e-11\n", "V_corr= -375.92473\n", "ibin= 2144 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -19.0 155.2 0.065 0.047 0.000 0.000 1.599 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0984 7.50e-10\n", "V_corr= -351.78360\n", "ibin= 2145 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -34.1 108.7 0.006 -0.020 0.000 0.000 1.212 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.507 5.85e-10\n", "V_corr= -366.88930\n", "ibin= 2146 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 2.3 123.2 0.041 0.031 0.000 0.000 0.901 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.208 7.78e-10\n", "V_corr= -330.48867\n", "ibin= 2147 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -10.9 123.1 0.047 0.002 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 7.80e-10\n", "V_corr= -343.71783\n", "ibin= 2148 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -23.1 161.7 -0.030 0.081 0.000 0.000 1.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00529 9.51e-10\n", "V_corr= -355.93835\n", "ibin= 2149 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -17.4 141.8 0.024 0.029 0.000 0.000 1.135 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.292 8.62e-10\n", "V_corr= -350.16238\n", "ibin= 2150 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -35.8 134.7 0.055 0.066 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 2.92e+03 0.00598 2.08e-10\n", "V_corr= -368.56906\n", "ibin= 2151 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -1.5 150.8 0.026 0.040 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.269 8.51e-10\n", "V_corr= -334.35129\n", "ibin= 2152 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -28.7 151.0 -0.009 0.002 0.000 0.000 1.116 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.317 9.67e-10\n", "V_corr= -361.51832\n", "ibin= 2153 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 270 -22.1 125.4 0.015 0.069 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 1.04e-09\n", "V_corr= -354.91378\n", "ibin= 2154 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 15.4 112.3 -0.003 0.041 0.000 0.000 0.889 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.494 8.64e-10\n", "V_corr= -317.39938\n", "ibin= 2155 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -6.2 143.1 0.002 -0.002 0.000 0.000 0.908 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.203 1.32e-09\n", "V_corr= -338.96255\n", "ibin= 2156 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 0.8 126.5 -0.058 0.028 0.000 0.000 1.049 NaN\n", "Ages, Metallicities, Weights:\n", " 6.35e+03 -0.0838 6.00e-10\n", "V_corr= -331.96091\n", "ibin= 2157 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 114 -5.1 110.6 0.022 0.020 0.000 0.000 0.920 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.515 1.13e-09\n", "V_corr= -337.86369\n", "ibin= 2158 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -20.1 177.5 -0.068 0.054 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+04 0.0649 1.33e-09\n", "V_corr= -352.92064\n", "ibin= 2159 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -22.0 136.1 -0.034 0.079 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 0.00836 1.32e-09\n", "V_corr= -354.78496\n", "ibin= 2160 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -12.4 147.0 0.082 0.016 0.000 0.000 0.504 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.194 1.78e-09\n", "V_corr= -345.21330\n", "ibin= 2161 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 3.1 159.0 -0.094 0.046 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 -0.0283 1.35e-09\n", "V_corr= -329.73159\n", "ibin= 2162 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -8.6 172.3 -0.036 0.117 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 5.43e+03 0.410 1.11e-09\n", "V_corr= -341.45320\n", "ibin= 2163 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 3.7 177.6 -0.044 -0.001 0.000 0.000 0.420 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0812 2.58e-09\n", "V_corr= -329.08899\n", "ibin= 2164 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -6.4 162.9 -0.046 0.012 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 2.48e+03 0.235 5.79e-10\n", "V_corr= -339.24754\n", "ibin= 2165 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -10.7 180.0 -0.069 0.084 0.000 0.000 0.934 NaN\n", "Ages, Metallicities, Weights:\n", " 9.91e+03 0.457 2.65e-09\n", "V_corr= -343.50839\n", "ibin= 2166 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 9.9 169.8 -0.084 0.084 0.000 0.000 0.837 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+04 0.00951 3.56e-09\n", "V_corr= -322.92382\n", "ibin= 2167 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 7.0 183.7 -0.030 0.048 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0188 4.12e-09\n", "V_corr= -325.83789\n", "ibin= 2168 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 2.1 181.7 -0.064 -0.008 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.0482 3.36e-09\n", "V_corr= -330.71409\n", "ibin= 2169 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 6.5 183.4 -0.007 0.050 0.000 0.000 0.661 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0552 5.32e-09\n", "V_corr= -326.30338\n", "ibin= 2170 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 23.6 170.7 -0.042 0.028 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0796 5.68e-09\n", "V_corr= -309.24840\n", "ibin= 2171 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 29.3 165.6 -0.001 0.044 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 6.43e-09\n", "V_corr= -303.46095\n", "ibin= 2172 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 37.4 185.1 -0.092 0.082 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 7.87e-09\n", "V_corr= -295.44193\n", "ibin= 2173 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 40.8 162.3 -0.049 0.050 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0286 7.93e-09\n", "V_corr= -292.01779\n", "ibin= 2174 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 43.9 175.8 -0.046 0.039 0.000 0.000 0.731 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.120 8.42e-09\n", "V_corr= -288.85958\n", "ibin= 2175 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 47.8 188.0 -0.066 0.031 0.000 0.000 0.767 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 0.171 8.20e-09\n", "V_corr= -284.99012\n", "ibin= 2176 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 60.8 165.6 -0.077 0.037 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0103 8.14e-09\n", "V_corr= -272.03598\n", "ibin= 2177 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 69.7 171.0 -0.063 0.071 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0112 7.30e-09\n", "V_corr= -263.06919\n", "ibin= 2178 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 69.7 163.6 -0.100 0.018 0.000 0.000 0.641 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0657 6.32e-09\n", "V_corr= -263.13172\n", "ibin= 2179 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 65.6 176.2 -0.093 0.075 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 3.59e+03 0.485 2.01e-09\n", "V_corr= -267.16020\n", "ibin= 2180 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 211 72.6 163.0 -0.057 0.022 0.000 0.000 0.873 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0537 5.39e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -260.25414\n", "ibin= 2181 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 66.2 166.3 -0.045 0.067 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0825 5.20e-09\n", "V_corr= -266.57639\n", "ibin= 2182 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 64.2 168.8 -0.024 0.041 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0631 4.64e-09\n", "V_corr= -268.59095\n", "ibin= 2183 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 63.1 179.2 -0.014 0.056 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.175 4.49e-09\n", "V_corr= -269.66359\n", "ibin= 2184 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 80.4 162.8 -0.081 -0.013 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.108 3.49e-09\n", "V_corr= -252.37784\n", "ibin= 2185 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 75.9 166.7 -0.040 0.046 0.000 0.000 0.788 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0182 3.22e-09\n", "V_corr= -256.94116\n", "ibin= 2186 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 211 85.1 164.9 -0.094 -0.039 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.154 2.81e-09\n", "V_corr= -247.73757\n", "ibin= 2187 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 84.8 146.2 -0.078 0.063 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0859 2.90e-09\n", "V_corr= -248.03458\n", "ibin= 2188 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 85.4 142.8 -0.052 0.069 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0283 2.47e-09\n", "V_corr= -247.36374\n", "ibin= 2189 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 62.5 165.8 0.035 0.078 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.100 2.47e-09\n", "V_corr= -270.34102\n", "ibin= 2190 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 82.5 160.3 -0.046 0.086 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 0.145 2.14e-09\n", "V_corr= -250.29791\n", "ibin= 2191 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 105.2 166.7 -0.051 0.069 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0704 2.11e-09\n", "V_corr= -227.59373\n", "ibin= 2192 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 86.6 146.3 -0.049 0.107 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 -0.0114 1.23e-09\n", "V_corr= -246.21484\n", "ibin= 2193 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 80.7 181.4 0.005 0.025 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.192 1.98e-09\n", "V_corr= -252.12827\n", "ibin= 2194 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 97.8 155.4 -0.047 -0.017 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0791 1.46e-09\n", "V_corr= -235.04076\n", "ibin= 2195 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 79.3 203.8 -0.078 0.094 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 0.355 1.09e-09\n", "V_corr= -253.47613\n", "ibin= 2196 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 85.4 173.3 -0.058 0.055 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 3.95e+03 0.374 4.72e-10\n", "V_corr= -247.37134\n", "ibin= 2197 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 110.6 164.8 -0.048 -0.010 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+03 0.500 2.41e-10\n", "V_corr= -222.17076\n", "ibin= 2198 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 108.0 175.6 -0.033 -0.023 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0205 1.32e-09\n", "V_corr= -224.82562\n", "ibin= 2199 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 87.5 171.1 -0.018 0.017 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.266 1.39e-09\n", "V_corr= -245.26177\n", "ibin= 2200 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 123.9 148.3 0.013 0.002 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.0587 8.41e-10\n", "V_corr= -208.88835\n", "ibin= 2201 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 133.4 130.1 -0.018 0.017 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.244 7.83e-10\n", "V_corr= -199.41213\n", "ibin= 2202 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 101.0 172.7 0.014 0.053 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.667 1.22e-10\n", "V_corr= -231.82652\n", "ibin= 2203 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 85.8 169.2 0.032 0.034 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 0.105 6.35e-10\n", "V_corr= -246.99341\n", "ibin= 2204 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 121.4 131.9 -0.042 0.051 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 6.95e-10\n", "V_corr= -211.39955\n", "ibin= 2205 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 138.6 146.8 -0.023 0.020 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 8.90e-10\n", "V_corr= -194.21653\n", "ibin= 2206 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 119.0 208.5 -0.044 0.046 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.236 9.71e-10\n", "V_corr= -213.76151\n", "ibin= 2207 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 137.9 128.6 -0.021 0.032 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 8.64e+03 0.207 5.12e-10\n", "V_corr= -194.91644\n", "ibin= 2208 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2209 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2210 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -9.3 178.5 0.045 0.045 0.000 0.000 1.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+03 -0.136 8.81e-11\n", "V_corr= -342.09772\n", "ibin= 2211 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -32.7 107.4 -0.006 -0.005 0.000 0.000 0.691 NaN\n", "Ages, Metallicities, Weights:\n", " 4.73e+03 -0.240 2.09e-10\n", "V_corr= -365.49866\n", "ibin= 2212 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -10.5 113.8 -0.004 0.032 0.000 0.000 1.038 NaN\n", "Ages, Metallicities, Weights:\n", " 7.68e+03 -0.391 2.79e-10\n", "V_corr= -343.34356\n", "ibin= 2213 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -50.4 127.8 0.026 -0.000 0.000 0.000 1.022 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.340 6.77e-10\n", "V_corr= -383.19776\n", "ibin= 2214 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -12.2 140.1 0.054 0.076 0.000 0.000 1.069 NaN\n", "Ages, Metallicities, Weights:\n", " 5.33e+03 -0.00408 2.89e-10\n", "V_corr= -345.00772\n", "ibin= 2215 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -36.1 82.3 0.017 0.015 0.000 0.000 1.684 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.474 6.36e-10\n", "V_corr= -368.88396\n", "ibin= 2216 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -0.4 154.5 0.109 0.006 0.000 0.000 1.021 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.332 6.92e-10\n", "V_corr= -333.16901\n", "ibin= 2217 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 132 -36.4 115.8 -0.020 0.026 0.000 0.000 1.053 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+03 0.240 9.74e-11\n", "V_corr= -369.16229\n", "ibin= 2218 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -15.0 140.8 0.032 0.036 0.000 0.000 0.894 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.391 6.82e-10\n", "V_corr= -347.79488\n", "ibin= 2219 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 12.3 102.3 -0.046 0.011 0.000 0.000 0.881 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.435 8.25e-10\n", "V_corr= -320.51681\n", "ibin= 2220 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 10.9 98.7 -0.020 0.044 0.000 0.000 0.732 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.374 7.50e-10\n", "V_corr= -321.89344\n", "ibin= 2221 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -3.0 119.5 0.005 0.056 0.000 0.000 1.059 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.300 1.02e-09\n", "V_corr= -335.82388\n", "ibin= 2222 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -31.7 142.7 0.035 0.072 0.000 0.000 0.565 NaN\n", "Ages, Metallicities, Weights:\n", " 7.77e+03 0.0101 6.39e-10\n", "V_corr= -364.51460\n", "ibin= 2223 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -27.3 144.1 0.004 0.057 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.107 1.31e-09\n", "V_corr= -360.06296\n", "ibin= 2224 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -17.8 154.2 -0.050 0.062 0.000 0.000 0.766 NaN\n", "Ages, Metallicities, Weights:\n", " 2.33e+03 0.321 2.92e-10\n", "V_corr= -350.65856\n", "ibin= 2225 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -34.4 165.0 -0.026 0.028 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 0.254 3.29e-10\n", "V_corr= -367.24769\n", "ibin= 2226 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -3.8 149.1 -0.096 0.010 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.0455 1.50e-09\n", "V_corr= -336.60181\n", "ibin= 2227 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 115 -16.1 167.7 -0.034 0.079 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 8.16e+03 0.246 1.20e-09\n", "V_corr= -348.93282\n", "ibin= 2228 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -7.3 135.4 -0.070 0.149 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 1.74e-09\n", "V_corr= -340.09800\n", "ibin= 2229 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -31.0 175.7 -0.016 -0.010 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 4.02e+03 0.151 6.42e-10\n", "V_corr= -363.84859\n", "ibin= 2230 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 -4.3 166.1 -0.087 0.164 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.255 2.60e-09\n", "V_corr= -337.14604\n", "ibin= 2231 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -2.2 152.3 0.020 0.046 0.000 0.000 0.794 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0238 2.54e-09\n", "V_corr= -334.96633\n", "ibin= 2232 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -10.8 176.6 -0.079 -0.030 0.000 0.000 0.696 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+04 0.0696 2.40e-09\n", "V_corr= -343.62029\n", "ibin= 2233 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 21.3 145.3 -0.015 0.092 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.152 2.74e-09\n", "V_corr= -311.47626\n", "ibin= 2234 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 1.6 157.8 -0.061 0.115 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00244 3.36e-09\n", "V_corr= -331.19793\n", "ibin= 2235 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 7.9 160.5 -0.062 0.110 0.000 0.000 0.907 NaN\n", "Ages, Metallicities, Weights:\n", " 8.33e+03 0.0445 2.07e-09\n", "V_corr= -324.87441\n", "ibin= 2236 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 18.8 167.1 -0.044 0.047 0.000 0.000 0.584 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 -0.0574 2.65e-09\n", "V_corr= -313.97180\n", "ibin= 2237 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 20.8 163.2 -0.062 0.030 0.000 0.000 1.005 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+04 -0.0869 4.74e-09\n", "V_corr= -311.96214\n", "ibin= 2238 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 18.2 177.8 -0.002 -0.023 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0402 5.84e-09\n", "V_corr= -314.58827\n", "ibin= 2239 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 29.6 169.9 -0.044 0.067 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 0.0362 4.21e-09\n", "V_corr= -303.25632\n", "ibin= 2240 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 12.7 181.3 0.003 0.042 0.000 0.000 0.560 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.138 8.38e-09\n", "V_corr= -320.05981\n", "ibin= 2241 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 34.2 188.5 0.003 0.042 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0437 9.01e-09\n", "V_corr= -298.59142\n", "ibin= 2242 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 27.8 182.1 -0.063 0.048 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 0.127 7.78e-09\n", "V_corr= -305.02629\n", "ibin= 2243 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 46.7 175.3 -0.103 0.017 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.0998 7.27e-09\n", "V_corr= -286.07961\n", "ibin= 2244 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 73 56.4 175.4 -0.049 0.119 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.170 1.03e-08\n", "V_corr= -276.41823\n", "ibin= 2245 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 48.6 181.8 -0.094 0.029 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.110 9.88e-09\n", "V_corr= -284.17939\n", "ibin= 2246 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 55.2 171.2 -0.098 0.047 0.000 0.000 0.867 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0184 8.45e-09\n", "V_corr= -277.61752\n", "ibin= 2247 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 55.9 180.3 -0.063 0.017 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+04 0.00147 7.38e-09\n", "V_corr= -276.94498\n", "ibin= 2248 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 72.9 146.2 -0.088 0.060 0.000 0.000 0.911 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.164 5.54e-09\n", "V_corr= -259.86574\n", "ibin= 2249 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 52.0 160.7 -0.011 0.108 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.100 3.92e-09\n", "V_corr= -280.78780\n", "ibin= 2250 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 58.8 180.1 -0.070 0.032 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0368 5.01e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -274.03508\n", "ibin= 2251 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 69.5 180.3 -0.042 0.034 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 5.34e+03 0.348 1.99e-09\n", "V_corr= -263.29166\n", "ibin= 2252 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 50.2 188.0 -0.084 0.076 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.601 8.04e-09\n", "V_corr= -282.57250\n", "ibin= 2253 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 86.4 160.5 -0.108 0.092 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0621 3.79e-09\n", "V_corr= -246.37348\n", "ibin= 2254 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 72.0 173.2 -0.065 0.064 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 0.00571 3.13e-09\n", "V_corr= -260.84769\n", "ibin= 2255 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 85.4 160.0 0.012 0.002 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.155 2.78e-09\n", "V_corr= -247.44301\n", "ibin= 2256 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 77.3 164.5 -0.004 0.010 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0792 2.67e-09\n", "V_corr= -255.49258\n", "ibin= 2257 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 81.1 121.9 0.001 0.117 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 2.26e-09\n", "V_corr= -251.66376\n", "ibin= 2258 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 72.0 177.1 -0.008 0.040 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.219 2.73e-09\n", "V_corr= -260.83678\n", "ibin= 2259 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 82.6 150.0 -0.015 0.086 0.000 0.000 0.999 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0401 2.03e-09\n", "V_corr= -250.20818\n", "ibin= 2260 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 96.4 156.5 -0.031 0.003 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.138 1.86e-09\n", "V_corr= -236.45024\n", "ibin= 2261 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 89.7 150.7 0.004 0.006 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.0208 1.64e-09\n", "V_corr= -243.13859\n", "ibin= 2262 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 94.7 100.5 -0.020 0.007 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 -0.0326 1.50e-10\n", "V_corr= -238.07591\n", "ibin= 2263 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 95.9 172.4 -0.086 0.104 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0291 1.52e-09\n", "V_corr= -236.88223\n", "ibin= 2264 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 109.6 157.9 -0.048 0.069 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 2.99e+03 0.470 4.03e-10\n", "V_corr= -223.22617\n", "ibin= 2265 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 88.4 150.1 -0.019 0.086 0.000 0.000 0.227 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.152 1.52e-09\n", "V_corr= -244.37186\n", "ibin= 2266 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 98.6 165.0 -0.019 0.030 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0345 1.37e-09\n", "V_corr= -234.25247\n", "ibin= 2267 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 85.8 160.2 0.038 0.014 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 0.518 2.54e-10\n", "V_corr= -246.96370\n", "ibin= 2268 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 107.4 151.8 0.016 -0.006 0.000 0.000 0.636 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0884 1.09e-09\n", "V_corr= -225.41039\n", "ibin= 2269 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 132.8 125.8 -0.028 0.026 0.000 0.000 0.368 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.408 7.37e-10\n", "V_corr= -200.04025\n", "ibin= 2270 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 107.3 113.8 -0.017 0.030 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.280 7.80e-10\n", "V_corr= -225.54944\n", "ibin= 2271 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 118.1 215.8 0.003 -0.040 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0700 9.41e-10\n", "V_corr= -214.72561\n", "ibin= 2272 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 122.6 134.1 0.026 0.007 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.186 7.57e-10\n", "V_corr= -210.20537\n", "ibin= 2273 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 89.7 138.3 -0.006 0.036 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 7.27e+03 -0.116 3.20e-10\n", "V_corr= -243.13209\n", "ibin= 2274 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 83.3 187.0 -0.014 -0.011 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0795 7.93e-10\n", "V_corr= -249.51924\n", "ibin= 2275 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 115.6 118.6 0.016 0.021 0.000 0.000 0.769 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.368 5.75e-10\n", "V_corr= -217.24985\n", "ibin= 2276 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 152.9 195.4 0.006 0.062 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.559 1.40e-09\n", "V_corr= -179.92324\n", "ibin= 2277 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2278 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2279 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -43.4 165.5 -0.017 0.030 0.000 0.000 1.478 NaN\n", "Ages, Metallicities, Weights:\n", " 3.39e+03 0.359 2.10e-10\n", "V_corr= -376.18134\n", "ibin= 2280 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 3.8 167.5 0.019 0.015 0.000 0.000 1.262 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.346 6.01e-10\n", "V_corr= -329.02273\n", "ibin= 2281 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -34.7 140.1 -0.012 0.032 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 2.28e+03 0.169 1.39e-10\n", "V_corr= -367.52768\n", "ibin= 2282 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -33.3 125.4 0.073 -0.005 0.000 0.000 0.799 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.568 5.40e-10\n", "V_corr= -366.13844\n", "ibin= 2283 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 -12.7 94.0 -0.015 0.012 0.000 0.000 2.202 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.494 6.02e-10\n", "V_corr= -345.54133\n", "ibin= 2284 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -27.3 134.0 -0.015 -0.050 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 4.20e+03 -0.601 1.80e-10\n", "V_corr= -360.11069\n", "ibin= 2285 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -8.0 150.1 -0.014 0.067 0.000 0.000 1.078 NaN\n", "Ages, Metallicities, Weights:\n", " 3.90e+03 -0.0172 2.41e-10\n", "V_corr= -340.82833\n", "ibin= 2286 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -41.8 143.1 0.014 0.040 0.000 0.000 1.040 NaN\n", "Ages, Metallicities, Weights:\n", " 7.73e+03 -0.231 3.93e-10\n", "V_corr= -374.62200\n", "ibin= 2287 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -27.7 143.2 0.015 -0.009 0.000 0.000 1.199 NaN\n", "Ages, Metallicities, Weights:\n", " 3.58e+03 -0.295 2.23e-10\n", "V_corr= -360.46214\n", "ibin= 2288 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -9.4 173.6 0.024 0.048 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.150 1.06e-09\n", "V_corr= -342.21958\n", "ibin= 2289 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -11.6 110.6 -0.052 0.068 0.000 0.000 0.875 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.313 9.89e-10\n", "V_corr= -344.43081\n", "ibin= 2290 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 10.0 117.9 0.012 0.037 0.000 0.000 1.043 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 -0.295 6.01e-10\n", "V_corr= -322.82147\n", "ibin= 2291 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -34.3 135.8 0.046 -0.007 0.000 0.000 0.679 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.277 1.16e-09\n", "V_corr= -367.08471\n", "ibin= 2292 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -16.3 143.9 -0.055 0.023 0.000 0.000 0.985 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0908 1.37e-09\n", "V_corr= -349.06353\n", "ibin= 2293 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -5.8 131.7 -0.031 0.037 0.000 0.000 0.985 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.255 1.31e-09\n", "V_corr= -338.57076\n", "ibin= 2294 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -2.8 163.4 -0.021 0.013 0.000 0.000 0.890 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.190 1.51e-09\n", "V_corr= -335.65534\n", "ibin= 2295 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -14.9 142.1 -0.042 0.010 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 2.22e+03 0.226 3.25e-10\n", "V_corr= -347.68337\n", "ibin= 2296 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -17.7 156.0 -0.023 0.055 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 3.67e+03 0.118 5.07e-10\n", "V_corr= -350.46670\n", "ibin= 2297 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 105 -17.7 137.5 0.040 0.010 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.369 1.46e-09\n", "V_corr= -350.52586\n", "ibin= 2298 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -8.0 149.3 -0.002 0.104 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.97e-09\n", "V_corr= -340.76483\n", "ibin= 2299 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -14.9 182.4 -0.003 0.029 0.000 0.000 0.721 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 0.0476 2.51e-09\n", "V_corr= -347.66105\n", "ibin= 2300 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 10.8 171.3 0.042 0.031 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 -0.0611 1.76e-09\n", "V_corr= -321.99511\n", "ibin= 2301 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -7.4 166.6 -0.065 0.072 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0181 2.92e-09\n", "V_corr= -340.17949\n", "ibin= 2302 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 9.8 171.4 -0.103 0.045 0.000 0.000 0.794 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.0182 2.21e-09\n", "V_corr= -322.98488\n", "ibin= 2303 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -2.7 164.5 -0.033 0.007 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.0692 3.54e-09\n", "V_corr= -335.46621\n", "ibin= 2304 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -1.7 195.6 -0.038 0.055 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0194 4.26e-09\n", "V_corr= -334.47473\n", "ibin= 2305 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -3.7 177.2 -0.018 -0.013 0.000 0.000 0.910 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+04 -0.0243 3.58e-09\n", "V_corr= -336.49888\n", "ibin= 2306 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 3.0 166.7 -0.040 0.020 0.000 0.000 0.865 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0752 5.33e-09\n", "V_corr= -329.82678\n", "ibin= 2307 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 5.9 161.4 -0.046 0.072 0.000 0.000 0.641 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 0.0159 4.40e-09\n", "V_corr= -326.94895\n", "ibin= 2308 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 7.5 192.5 0.013 0.060 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.149 8.16e-09\n", "V_corr= -325.31591\n", "ibin= 2309 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 19.5 186.4 -0.043 0.046 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00264 8.80e-09\n", "V_corr= -313.35816\n", "ibin= 2310 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 27.8 183.8 -0.038 0.029 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 1.11e-08\n", "V_corr= -305.03537\n", "ibin= 2311 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 36.6 163.4 -0.076 0.079 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0648 1.21e-08\n", "V_corr= -296.21494\n", "ibin= 2312 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 45.0 177.1 -0.071 0.041 0.000 0.000 0.661 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.104 1.36e-08\n", "V_corr= -287.85490\n", "ibin= 2313 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 48.9 174.8 -0.086 0.089 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.221 1.34e-08\n", "V_corr= -283.95132\n", "ibin= 2314 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 56.6 169.7 -0.074 0.059 0.000 0.000 0.777 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.112 1.17e-08\n", "V_corr= -276.16954\n", "ibin= 2315 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 46.3 185.6 -0.066 0.100 0.000 0.000 0.765 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 0.206 1.04e-08\n", "V_corr= -286.52669\n", "ibin= 2316 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 56.1 167.4 -0.109 0.014 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0103 8.42e-09\n", "V_corr= -276.68919\n", "ibin= 2317 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 70.7 176.3 -0.071 0.045 0.000 0.000 0.666 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0202 7.17e-09\n", "V_corr= -262.11019\n", "ibin= 2318 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 66.8 158.3 -0.075 0.060 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0133 5.99e-09\n", "V_corr= -266.01969\n", "ibin= 2319 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 76.6 159.8 -0.069 0.042 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0837 4.87e-09\n", "V_corr= -256.16863\n", "ibin= 2320 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 63.7 168.9 -0.030 0.038 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 0.136 3.86e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -269.07450\n", "ibin= 2321 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 62.5 174.8 -0.009 0.063 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.150 4.48e-09\n", "V_corr= -270.33035\n", "ibin= 2322 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 69.1 172.1 -0.027 0.005 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 0.102 3.45e-09\n", "V_corr= -263.73480\n", "ibin= 2323 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 62.9 163.7 0.003 0.090 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0800 3.34e-09\n", "V_corr= -269.95071\n", "ibin= 2324 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 70.8 154.4 -0.059 0.079 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0544 2.99e-09\n", "V_corr= -261.97918\n", "ibin= 2325 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 75.9 142.5 -0.071 0.057 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0827 2.59e-09\n", "V_corr= -256.90341\n", "ibin= 2326 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 55.2 202.5 -0.151 0.052 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.392 3.43e-09\n", "V_corr= -277.59504\n", "ibin= 2327 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 86.0 176.9 -0.080 0.026 0.000 0.000 0.393 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0410 2.42e-09\n", "V_corr= -246.81038\n", "ibin= 2328 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 79.0 184.1 -0.024 0.038 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.169 2.42e-09\n", "V_corr= -253.84538\n", "ibin= 2329 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 76.2 168.8 -0.002 -0.017 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0547 2.13e-09\n", "V_corr= -256.57939\n", "ibin= 2330 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 101.3 148.1 -0.100 0.009 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.148 1.68e-09\n", "V_corr= -231.50637\n", "ibin= 2331 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 80.8 148.4 0.013 0.016 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0945 1.56e-09\n", "V_corr= -252.03027\n", "ibin= 2332 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 78.1 150.5 -0.023 0.077 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.131 1.36e-09\n", "V_corr= -254.71345\n", "ibin= 2333 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 95.9 170.1 -0.032 0.087 0.000 0.000 0.351 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.209 1.60e-09\n", "V_corr= -236.94322\n", "ibin= 2334 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 75.5 177.7 -0.096 0.122 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 0.349 1.64e-09\n", "V_corr= -257.34769\n", "ibin= 2335 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 101.4 177.7 -0.056 0.088 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.160 1.40e-09\n", "V_corr= -231.44026\n", "ibin= 2336 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 106.5 170.2 -0.017 0.035 0.000 0.000 0.668 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 0.199 1.25e-09\n", "V_corr= -226.30638\n", "ibin= 2337 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 109.1 178.1 -0.033 0.105 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.131 1.12e-09\n", "V_corr= -223.74282\n", "ibin= 2338 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 77.2 161.2 0.069 0.035 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 5.37e+03 0.146 3.58e-10\n", "V_corr= -255.58679\n", "ibin= 2339 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 67.3 156.2 -0.011 0.028 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 2.37e+03 0.531 2.22e-10\n", "V_corr= -265.50705\n", "ibin= 2340 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 53.5 153.4 -0.103 0.040 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 7.13e+03 0.216 4.53e-10\n", "V_corr= -279.35791\n", "ibin= 2341 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 74.2 209.5 -0.021 0.040 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 2.13e-09\n", "V_corr= -258.64797\n", "ibin= 2342 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 117.1 148.6 -0.029 0.079 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 0.689 1.27e-10\n", "V_corr= -215.66146\n", "ibin= 2343 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 86.1 123.2 0.025 0.012 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.310 6.43e-10\n", "V_corr= -246.71424\n", "ibin= 2344 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 107.4 206.3 0.001 0.061 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 6.16e+03 0.215 3.57e-10\n", "V_corr= -225.38576\n", "ibin= 2345 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 309 132.0 85.4 -0.046 -0.011 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.557 3.97e-10\n", "V_corr= -200.76034\n", "ibin= 2346 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2347 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2348 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -53.8 166.7 -0.010 0.049 0.000 0.000 1.425 NaN\n", "Ages, Metallicities, Weights:\n", " 2.61e+03 0.483 1.90e-10\n", "V_corr= -386.63400\n", "ibin= 2349 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -48.5 115.0 0.023 -0.009 0.000 0.000 1.198 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.423 5.76e-10\n", "V_corr= -381.27283\n", "ibin= 2350 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -33.5 148.5 0.006 0.005 0.000 0.000 1.177 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 7.55e-10\n", "V_corr= -366.30380\n", "ibin= 2351 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -52.5 135.0 0.034 -0.003 0.000 0.000 0.772 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.322 7.00e-10\n", "V_corr= -385.33441\n", "ibin= 2352 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -14.3 119.4 0.018 0.027 0.000 0.000 1.803 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.370 7.02e-10\n", "V_corr= -347.12640\n", "ibin= 2353 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -32.3 150.4 0.036 0.076 0.000 0.000 1.019 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 0.590 1.40e-10\n", "V_corr= -365.09910\n", "ibin= 2354 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -40.7 164.2 0.005 0.074 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.341 2.31e-10\n", "V_corr= -373.47803\n", "ibin= 2355 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -26.2 147.9 -0.004 0.001 0.000 0.000 0.901 NaN\n", "Ages, Metallicities, Weights:\n", " 2.70e+03 -0.216 1.71e-10\n", "V_corr= -358.97663\n", "ibin= 2356 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -18.2 123.3 0.034 -0.018 0.000 0.000 1.150 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.297 8.09e-10\n", "V_corr= -351.05800\n", "ibin= 2357 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -25.4 158.9 -0.018 -0.010 0.000 0.000 0.785 NaN\n", "Ages, Metallicities, Weights:\n", " 4.87e+03 -0.233 3.44e-10\n", "V_corr= -358.19256\n", "ibin= 2358 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -25.8 134.3 0.060 0.070 0.000 0.000 0.899 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.197 1.11e-09\n", "V_corr= -358.65840\n", "ibin= 2359 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -4.6 144.7 0.016 0.010 0.000 0.000 1.290 NaN\n", "Ages, Metallicities, Weights:\n", " 3.43e+03 0.0381 3.17e-10\n", "V_corr= -337.41316\n", "ibin= 2360 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -15.6 126.0 -0.012 0.045 0.000 0.000 0.982 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 -0.0902 7.88e-10\n", "V_corr= -348.40751\n", "ibin= 2361 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 0.4 145.4 -0.030 0.004 0.000 0.000 0.750 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0987 1.43e-09\n", "V_corr= -332.40003\n", "ibin= 2362 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -21.6 126.8 0.029 0.033 0.000 0.000 0.863 NaN\n", "Ages, Metallicities, Weights:\n", " 2.32e+03 0.0911 2.69e-10\n", "V_corr= -354.43344\n", "ibin= 2363 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -4.2 143.3 -0.020 0.041 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.243 1.48e-09\n", "V_corr= -337.03880\n", "ibin= 2364 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -6.3 143.3 -0.069 0.077 0.000 0.000 0.832 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.69e-09\n", "V_corr= -339.11528\n", "ibin= 2365 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -5.7 143.8 -0.020 0.030 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.0611 1.31e-09\n", "V_corr= -338.54667\n", "ibin= 2366 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 2.4 150.1 0.048 0.063 0.000 0.000 0.871 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0651 2.12e-09\n", "V_corr= -330.39888\n", "ibin= 2367 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 92 -0.5 172.8 -0.020 0.074 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.133 2.54e-09\n", "V_corr= -333.31493\n", "ibin= 2368 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -13.1 171.8 -0.073 0.084 0.000 0.000 0.765 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0238 2.48e-09\n", "V_corr= -345.93221\n", "ibin= 2369 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -11.6 129.3 -0.007 0.028 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 3.41e+03 -0.0797 6.21e-10\n", "V_corr= -344.42622\n", "ibin= 2370 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -9.9 146.4 -0.043 0.046 0.000 0.000 0.662 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.173 2.85e-09\n", "V_corr= -342.67387\n", "ibin= 2371 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -11.3 169.6 -0.019 0.078 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 0.195 2.58e-09\n", "V_corr= -344.15254\n", "ibin= 2372 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 1.6 185.2 -0.047 0.086 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.191 4.28e-09\n", "V_corr= -331.19524\n", "ibin= 2373 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -1.0 185.7 -0.027 0.019 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0948 4.74e-09\n", "V_corr= -333.78886\n", "ibin= 2374 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 4.4 163.4 -0.013 0.054 0.000 0.000 0.736 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.0620 4.76e-09\n", "V_corr= -328.36927\n", "ibin= 2375 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 0.1 188.7 -0.019 0.070 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0975 6.18e-09\n", "V_corr= -332.71363\n", "ibin= 2376 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 12.7 191.1 -0.039 0.047 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 0.142 7.40e-09\n", "V_corr= -320.14064\n", "ibin= 2377 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 11.3 176.1 -0.025 0.024 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 0.0110 8.11e-09\n", "V_corr= -321.54133\n", "ibin= 2378 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 14.5 175.4 -0.028 0.090 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0902 1.01e-08\n", "V_corr= -318.30007\n", "ibin= 2379 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 27.0 167.6 -0.049 0.066 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0753 1.26e-08\n", "V_corr= -305.79691\n", "ibin= 2380 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 30.2 173.3 -0.036 0.014 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0376 1.58e-08\n", "V_corr= -302.62036\n", "ibin= 2381 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 40.4 161.2 -0.065 0.029 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0754 1.78e-08\n", "V_corr= -292.41336\n", "ibin= 2382 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 45.9 170.9 -0.078 0.065 0.000 0.000 0.722 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.201 1.81e-08\n", "V_corr= -286.95057\n", "ibin= 2383 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 50.4 169.3 -0.081 0.044 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0557 1.33e-08\n", "V_corr= -282.39946\n", "ibin= 2384 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 65.0 161.1 -0.120 0.079 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.111 1.11e-08\n", "V_corr= -267.79276\n", "ibin= 2385 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 52.4 179.4 -0.089 0.049 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.101 9.21e-09\n", "V_corr= -280.43280\n", "ibin= 2386 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 43.4 173.6 -0.096 0.083 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.167 8.01e-09\n", "V_corr= -289.36839\n", "ibin= 2387 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 49.1 173.8 -0.024 0.041 0.000 0.000 0.762 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0301 6.37e-09\n", "V_corr= -283.73177\n", "ibin= 2388 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 62.5 168.9 -0.089 0.048 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0559 5.18e-09\n", "V_corr= -270.28594\n", "ibin= 2389 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 41.9 203.2 -0.057 0.006 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.169 5.36e-09\n", "V_corr= -290.88962\n", "ibin= 2390 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 57.7 172.4 -0.075 -0.013 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0449 4.21e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -275.14032\n", "ibin= 2391 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 70.4 162.9 -0.072 0.064 0.000 0.000 0.729 NaN\n", "Ages, Metallicities, Weights:\n", " 8.75e+03 0.161 2.34e-09\n", "V_corr= -262.38183\n", "ibin= 2392 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 68.5 159.4 -0.004 0.059 0.000 0.000 0.722 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0680 3.17e-09\n", "V_corr= -264.34293\n", "ibin= 2393 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 79.4 167.2 -0.042 0.019 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0413 3.12e-09\n", "V_corr= -253.40489\n", "ibin= 2394 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 75.9 162.6 -0.036 0.015 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 0.00631 1.86e-09\n", "V_corr= -256.93674\n", "ibin= 2395 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 93.0 151.8 -0.097 0.022 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 2.27e-09\n", "V_corr= -239.81935\n", "ibin= 2396 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 81.2 146.8 -0.022 0.052 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0174 2.23e-09\n", "V_corr= -251.63992\n", "ibin= 2397 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 74.3 152.3 -0.015 0.003 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.139 1.93e-09\n", "V_corr= -258.50424\n", "ibin= 2398 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 213 82.9 155.9 -0.004 0.063 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0574 1.90e-09\n", "V_corr= -249.91307\n", "ibin= 2399 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 252 96.7 173.2 -0.078 0.055 0.000 0.000 0.671 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 4.71e-09\n", "V_corr= -236.15332\n", "ibin= 2400 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 106.9 140.5 -0.035 0.054 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0905 1.56e-09\n", "V_corr= -225.87822\n", "ibin= 2401 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 79.3 181.3 -0.041 0.056 0.000 0.000 0.290 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.274 1.79e-09\n", "V_corr= -253.49721\n", "ibin= 2402 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 89.1 172.5 0.003 0.037 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 8.00e+03 0.252 8.97e-10\n", "V_corr= -243.70932\n", "ibin= 2403 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 95.5 152.9 -0.033 0.056 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0640 1.37e-09\n", "V_corr= -237.35328\n", "ibin= 2404 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 82.1 182.8 0.017 0.051 0.000 0.000 0.313 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+03 0.665 2.04e-10\n", "V_corr= -250.71273\n", "ibin= 2405 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 111.8 146.8 -0.030 0.029 0.000 0.000 0.285 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.289 9.58e-10\n", "V_corr= -221.01492\n", "ibin= 2406 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 116.4 160.2 -0.012 0.072 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.0470 9.71e-10\n", "V_corr= -216.42614\n", "ibin= 2407 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 76.2 184.6 0.027 0.009 0.000 0.000 0.356 NaN\n", "Ages, Metallicities, Weights:\n", " 2.01e+03 0.222 1.55e-10\n", "V_corr= -256.61505\n", "ibin= 2408 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 101.8 129.5 0.056 0.033 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.256 7.19e-10\n", "V_corr= -231.05365\n", "ibin= 2409 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 87.1 184.9 0.009 0.019 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0889 8.81e-10\n", "V_corr= -245.73893\n", "ibin= 2410 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 119.8 110.1 -0.008 0.020 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 5.04e+03 -0.207 2.24e-10\n", "V_corr= -213.00316\n", "ibin= 2411 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 74.3 134.9 -0.029 -0.015 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 799. 0.614 6.16e-11\n", "V_corr= -258.51302\n", "ibin= 2412 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 65.2 106.1 -0.009 0.029 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 2.74e+03 -0.107 1.27e-10\n", "V_corr= -267.55991\n", "ibin= 2413 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 119.8 174.4 0.045 -0.035 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.0571 5.79e-10\n", "V_corr= -212.97648\n", "ibin= 2414 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 125.5 131.7 0.019 -0.043 0.000 0.000 0.668 NaN\n", "Ages, Metallicities, Weights:\n", " 8.45e+03 -0.0101 3.71e-10\n", "V_corr= -207.26017\n", "ibin= 2415 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2416 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2417 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 206 -10.8 95.5 0.018 -0.008 0.000 0.000 1.069 NaN\n", "Ages, Metallicities, Weights:\n", " 9.82e+03 -0.848 2.48e-10\n", "V_corr= -343.58809\n", "ibin= 2418 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -19.2 161.2 0.006 -0.043 0.000 0.000 1.814 NaN\n", "Ages, Metallicities, Weights:\n", " 7.48e+03 -0.623 2.24e-10\n", "V_corr= -351.96445\n", "ibin= 2419 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -14.1 139.2 -0.032 0.101 0.000 0.000 1.090 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+03 0.644 1.13e-10\n", "V_corr= -346.93909\n", "ibin= 2420 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 -46.5 182.9 -0.028 0.079 0.000 0.000 1.565 NaN\n", "Ages, Metallicities, Weights:\n", " 2.13e+03 0.418 1.68e-10\n", "V_corr= -379.31944\n", "ibin= 2421 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -23.9 91.5 0.024 0.027 0.000 0.000 0.869 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 -0.640 3.66e-10\n", "V_corr= -356.73047\n", "ibin= 2422 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -1.9 136.6 0.031 0.094 0.000 0.000 0.855 NaN\n", "Ages, Metallicities, Weights:\n", " 4.29e+03 -0.309 2.15e-10\n", "V_corr= -334.66333\n", "ibin= 2423 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -15.8 108.0 -0.062 -0.028 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 6.19e+03 -0.426 3.00e-10\n", "V_corr= -348.56641\n", "ibin= 2424 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -43.9 145.7 -0.026 0.044 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 -0.266 6.03e-10\n", "V_corr= -376.75870\n", "ibin= 2425 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -4.3 126.5 0.078 -0.004 0.000 0.000 0.802 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.331 8.06e-10\n", "V_corr= -337.09433\n", "ibin= 2426 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -33.5 137.2 -0.047 0.017 0.000 0.000 1.310 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.284 1.05e-09\n", "V_corr= -366.35297\n", "ibin= 2427 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -22.8 122.6 -0.021 0.052 0.000 0.000 1.357 NaN\n", "Ages, Metallicities, Weights:\n", " 6.53e+03 -0.00411 5.38e-10\n", "V_corr= -355.60625\n", "ibin= 2428 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -28.5 116.8 0.032 -0.011 0.000 0.000 0.850 NaN\n", "Ages, Metallicities, Weights:\n", " 4.16e+03 -0.189 3.47e-10\n", "V_corr= -361.34694\n", "ibin= 2429 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -20.8 165.1 0.002 -0.075 0.000 0.000 1.036 NaN\n", "Ages, Metallicities, Weights:\n", " 6.67e+03 -0.0621 6.29e-10\n", "V_corr= -353.61436\n", "ibin= 2430 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 -34.8 175.1 -0.005 -0.017 0.000 0.000 1.092 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.0874 1.27e-09\n", "V_corr= -367.62452\n", "ibin= 2431 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -16.5 150.4 -0.036 0.010 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 7.79e+03 0.0941 9.07e-10\n", "V_corr= -349.29418\n", "ibin= 2432 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -5.6 159.6 -0.004 0.083 0.000 0.000 1.600 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0264 1.72e-09\n", "V_corr= -338.38462\n", "ibin= 2433 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -28.6 152.0 0.070 0.064 0.000 0.000 0.722 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0824 1.85e-09\n", "V_corr= -361.36275\n", "ibin= 2434 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 4.2 197.1 -0.006 -0.018 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 9.82e+03 0.0867 1.56e-09\n", "V_corr= -328.60348\n", "ibin= 2435 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 8.2 143.6 -0.037 0.026 0.000 0.000 1.300 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.125 1.56e-09\n", "V_corr= -324.58613\n", "ibin= 2436 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -20.3 163.3 -0.037 0.051 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 0.132 2.65e-09\n", "V_corr= -353.09024\n", "ibin= 2437 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 145 -9.0 151.8 0.058 0.035 0.000 0.000 0.746 NaN\n", "Ages, Metallicities, Weights:\n", " 8.21e+03 -0.0389 1.31e-09\n", "V_corr= -341.78875\n", "ibin= 2438 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -20.5 169.5 -0.030 0.062 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.128 3.19e-09\n", "V_corr= -353.30411\n", "ibin= 2439 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -16.4 164.0 -0.016 0.047 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0183 3.26e-09\n", "V_corr= -349.19058\n", "ibin= 2440 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -13.1 166.8 -0.059 0.034 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0471 3.82e-09\n", "V_corr= -345.93243\n", "ibin= 2441 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -18.9 202.6 0.028 0.068 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0504 4.58e-09\n", "V_corr= -351.72040\n", "ibin= 2442 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -9.4 150.7 -0.003 0.084 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0278 4.47e-09\n", "V_corr= -342.22739\n", "ibin= 2443 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -16.6 185.6 -0.008 0.051 0.000 0.000 0.757 NaN\n", "Ages, Metallicities, Weights:\n", " 9.59e+03 0.267 4.01e-09\n", "V_corr= -349.40304\n", "ibin= 2444 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -8.3 184.1 0.001 0.027 0.000 0.000 0.552 NaN\n", "Ages, Metallicities, Weights:\n", " 6.61e+03 0.221 3.22e-09\n", "V_corr= -341.13259\n", "ibin= 2445 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 1.0 172.4 0.006 0.013 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.0443 5.28e-09\n", "V_corr= -331.83484\n", "ibin= 2446 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 6.4 177.4 -0.006 0.013 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0153 9.10e-09\n", "V_corr= -326.44423\n", "ibin= 2447 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 12.2 177.5 -0.016 0.041 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.102 1.16e-08\n", "V_corr= -320.64649\n", "ibin= 2448 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 18.5 172.3 -0.009 0.044 0.000 0.000 0.630 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 0.239 1.24e-08\n", "V_corr= -314.34435\n", "ibin= 2449 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 18.2 168.1 -0.025 0.050 0.000 0.000 0.678 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.132 2.04e-08\n", "V_corr= -314.62192\n", "ibin= 2450 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 37.9 152.9 -0.085 0.050 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 0.136 2.61e-08\n", "V_corr= -294.85938\n", "ibin= 2451 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 49.6 152.9 -0.111 0.056 0.000 0.000 1.025 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0915 2.00e-08\n", "V_corr= -283.23023\n", "ibin= 2452 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 44.3 158.5 -0.040 0.074 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0633 1.44e-08\n", "V_corr= -288.52318\n", "ibin= 2453 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 40.1 161.0 -0.059 0.045 0.000 0.000 0.919 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0234 1.12e-08\n", "V_corr= -292.75354\n", "ibin= 2454 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 47.7 176.7 -0.062 0.067 0.000 0.000 0.680 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.108 9.39e-09\n", "V_corr= -285.11443\n", "ibin= 2455 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 44.5 184.2 -0.050 0.006 0.000 0.000 0.504 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00878 7.38e-09\n", "V_corr= -288.34639\n", "ibin= 2456 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 46.1 174.9 -0.057 0.108 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.508 6.04e-09\n", "V_corr= -286.71016\n", "ibin= 2457 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 64.5 172.3 -0.076 0.049 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0711 5.35e-09\n", "V_corr= -268.26320\n", "ibin= 2458 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 44.8 183.8 -0.024 0.042 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0181 4.60e-09\n", "V_corr= -288.01840\n", "ibin= 2459 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 70.2 170.9 -0.112 0.059 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 0.0644 2.97e-09\n", "V_corr= -262.60959\n", "ibin= 2460 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 70.9 150.1 -0.055 0.037 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0198 3.41e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -261.93762\n", "ibin= 2461 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 86.3 180.4 -0.114 0.133 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.345 4.02e-09\n", "V_corr= -246.52098\n", "ibin= 2462 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 71.5 172.5 -0.045 0.015 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0231 2.95e-09\n", "V_corr= -261.35824\n", "ibin= 2463 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 75.4 133.0 -0.016 0.105 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 8.18e+03 0.00821 1.30e-09\n", "V_corr= -257.36838\n", "ibin= 2464 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 84.3 150.2 -0.023 0.099 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0103 2.33e-09\n", "V_corr= -248.51483\n", "ibin= 2465 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 78.5 166.5 -0.008 0.005 0.000 0.000 0.723 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 0.510 4.50e-10\n", "V_corr= -254.32334\n", "ibin= 2466 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 86.0 178.0 0.007 0.103 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 0.0657 1.73e-09\n", "V_corr= -246.80254\n", "ibin= 2467 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 76.4 156.7 -0.050 0.054 0.000 0.000 0.323 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0627 1.91e-09\n", "V_corr= -256.41215\n", "ibin= 2468 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 91.0 155.9 -0.050 0.077 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0820 1.57e-09\n", "V_corr= -241.83377\n", "ibin= 2469 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 101.7 164.9 -0.095 0.129 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0822 1.60e-09\n", "V_corr= -231.10732\n", "ibin= 2470 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 57.3 164.3 0.005 0.069 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 2.32e+03 0.531 3.53e-10\n", "V_corr= -275.54750\n", "ibin= 2471 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 67.0 144.9 0.120 0.111 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 2.27e+03 0.515 3.14e-10\n", "V_corr= -265.82646\n", "ibin= 2472 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 79.0 141.5 -0.067 0.045 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.110 1.22e-09\n", "V_corr= -253.82612\n", "ibin= 2473 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 119.7 160.3 0.050 -0.015 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 -0.166 1.06e-09\n", "V_corr= -213.13123\n", "ibin= 2474 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 103.8 165.3 -0.054 0.062 0.000 0.000 0.339 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0108 1.11e-09\n", "V_corr= -229.05752\n", "ibin= 2475 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 100.6 160.9 0.029 0.052 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0953 1.10e-09\n", "V_corr= -232.18784\n", "ibin= 2476 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 54.4 213.5 -0.099 -0.064 0.000 0.000 0.311 NaN\n", "Ages, Metallicities, Weights:\n", " 2.87e+03 0.239 2.16e-10\n", "V_corr= -278.44641\n", "ibin= 2477 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 113.2 149.0 0.007 -0.023 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 6.41e+03 -0.201 3.04e-10\n", "V_corr= -219.62807\n", "ibin= 2478 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 114.7 176.3 0.046 -0.007 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.190 6.94e-10\n", "V_corr= -218.11593\n", "ibin= 2479 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 80.6 122.1 0.042 -0.026 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 3.03e+03 -0.148 1.45e-10\n", "V_corr= -252.20755\n", "ibin= 2480 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 98 84.0 142.3 -0.035 0.020 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 6.09e+03 -0.144 2.27e-10\n", "V_corr= -248.83448\n", "ibin= 2481 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 100.9 111.7 -0.044 0.047 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.399 4.07e-10\n", "V_corr= -231.89591\n", "ibin= 2482 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 130.3 157.2 -0.013 -0.014 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 6.37e-10\n", "V_corr= -202.47232\n", "ibin= 2483 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 112.9 111.3 0.027 -0.002 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.104 4.77e-11\n", "V_corr= -219.89931\n", "ibin= 2484 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2485 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2486 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 277 -8.7 107.2 0.040 0.051 0.000 0.000 1.302 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.629 4.63e-10\n", "V_corr= -341.52745\n", "ibin= 2487 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -4.0 128.0 0.052 0.043 0.000 0.000 1.145 NaN\n", "Ages, Metallicities, Weights:\n", " 2.26e+03 -0.0672 1.15e-10\n", "V_corr= -336.83649\n", "ibin= 2488 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -20.8 114.7 -0.017 0.005 0.000 0.000 1.315 NaN\n", "Ages, Metallicities, Weights:\n", " 2.31e+03 -0.0116 1.30e-10\n", "V_corr= -353.60611\n", "ibin= 2489 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -39.9 134.5 -0.011 0.047 0.000 0.000 1.585 NaN\n", "Ages, Metallicities, Weights:\n", " 5.68e+03 -0.250 2.71e-10\n", "V_corr= -372.71552\n", "ibin= 2490 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -8.5 112.7 -0.010 0.028 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.654 5.55e-10\n", "V_corr= -341.34938\n", "ibin= 2491 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -24.7 129.5 -0.053 -0.004 0.000 0.000 0.960 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.0905 1.65e-10\n", "V_corr= -357.51612\n", "ibin= 2492 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 227 -32.6 110.2 -0.015 0.050 0.000 0.000 0.979 NaN\n", "Ages, Metallicities, Weights:\n", " 3.51e+03 -0.227 2.15e-10\n", "V_corr= -365.41224\n", "ibin= 2493 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -7.8 94.3 -0.045 0.003 0.000 0.000 1.053 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+03 0.111 1.01e-10\n", "V_corr= -340.59836\n", "ibin= 2494 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -5.8 86.2 -0.011 0.054 0.000 0.000 0.822 NaN\n", "Ages, Metallicities, Weights:\n", " 5.43e+03 -0.217 3.53e-10\n", "V_corr= -338.63801\n", "ibin= 2495 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 7.0 150.6 -0.108 -0.002 0.000 0.000 0.812 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.279 1.07e-09\n", "V_corr= -325.83426\n", "ibin= 2496 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -34.4 156.2 0.016 0.021 0.000 0.000 0.963 NaN\n", "Ages, Metallicities, Weights:\n", " 6.88e+03 0.0660 6.39e-10\n", "V_corr= -367.21586\n", "ibin= 2497 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -25.5 152.4 0.048 0.076 0.000 0.000 0.766 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+03 0.520 2.73e-10\n", "V_corr= -358.35654\n", "ibin= 2498 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -19.2 161.1 -0.038 0.038 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 5.01e+03 -0.0635 4.90e-10\n", "V_corr= -351.96845\n", "ibin= 2499 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -13.9 174.0 0.031 0.115 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.658 3.59e-09\n", "V_corr= -346.66307\n", "ibin= 2500 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -42.0 171.2 -0.013 0.099 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0790 1.75e-09\n", "V_corr= -374.78689\n", "ibin= 2501 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 248 -10.2 151.2 -0.093 0.088 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 5.35e+03 0.0987 6.81e-10\n", "V_corr= -342.97794\n", "ibin= 2502 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -31.5 144.3 0.019 0.019 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 0.0615 1.40e-09\n", "V_corr= -364.34950\n", "ibin= 2503 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -11.5 161.0 -0.058 0.011 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0279 2.20e-09\n", "V_corr= -344.35001\n", "ibin= 2504 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -25.4 151.7 -0.012 0.041 0.000 0.000 1.152 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 2.25e-09\n", "V_corr= -358.25295\n", "ibin= 2505 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -20.6 148.0 0.064 0.006 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 7.40e+03 0.00620 1.23e-09\n", "V_corr= -353.40718\n", "ibin= 2506 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 4\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 353 -20.6 169.4 -0.023 0.091 0.000 0.000 1.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.263 3.27e-09\n", "V_corr= -353.42425\n", "ibin= 2507 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -16.3 153.6 -0.004 0.087 0.000 0.000 0.787 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.83e+03 0.485 5.34e-10\n", "V_corr= -349.15625\n", "ibin= 2508 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -13.5 172.0 -0.010 0.086 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.0202 2.35e-09\n", "V_corr= -346.31549\n", "ibin= 2509 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -14.8 163.7 -0.030 0.073 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 0.000317 3.31e-09\n", "V_corr= -347.59375\n", "ibin= 2510 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -14.4 172.0 -0.026 0.030 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00526 4.19e-09\n", "V_corr= -347.19272\n", "ibin= 2511 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -3.7 161.9 -0.008 -0.001 0.000 0.000 0.716 NaN\n", "Ages, Metallicities, Weights:\n", " 1.00e+04 0.00123 2.89e-09\n", "V_corr= -336.52364\n", "ibin= 2512 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 2.3 158.6 -0.068 0.020 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.0795 5.32e-09\n", "V_corr= -330.52352\n", "ibin= 2513 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -4.4 170.0 -0.039 0.089 0.000 0.000 0.645 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 0.145 5.25e-09\n", "V_corr= -337.24903\n", "ibin= 2514 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -2.0 176.5 -0.025 0.068 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 0.258 6.41e-09\n", "V_corr= -334.79138\n", "ibin= 2515 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 9.7 183.0 0.022 0.048 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0872 9.53e-09\n", "V_corr= -323.13363\n", "ibin= 2516 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 5.4 164.9 -0.022 0.016 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0121 1.14e-08\n", "V_corr= -327.36323\n", "ibin= 2517 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -9.0 169.7 -0.001 0.070 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 0.187 1.46e-08\n", "V_corr= -341.83195\n", "ibin= 2518 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 2.3 159.9 -0.013 0.059 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 0.234 2.21e-08\n", "V_corr= -330.53435\n", "ibin= 2519 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 17.0 155.5 -0.059 0.034 0.000 0.000 1.040 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.145 2.59e-08\n", "V_corr= -315.81118\n", "ibin= 2520 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 37.1 157.8 -0.031 0.048 0.000 0.000 1.009 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0795 1.77e-08\n", "V_corr= -295.70363\n", "ibin= 2521 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 27.2 179.5 -0.063 0.075 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.239 9.76e-09\n", "V_corr= -305.57839\n", "ibin= 2522 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 39.2 169.9 -0.084 0.002 0.000 0.000 0.810 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0214 1.09e-08\n", "V_corr= -293.65727\n", "ibin= 2523 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 46.4 179.9 -0.009 0.024 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0658 8.97e-09\n", "V_corr= -286.45657\n", "ibin= 2524 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 43.8 177.0 -0.066 0.036 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0706 7.16e-09\n", "V_corr= -288.97256\n", "ibin= 2525 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 58.0 176.0 -0.084 0.019 0.000 0.000 0.900 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0258 5.91e-09\n", "V_corr= -274.78948\n", "ibin= 2526 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 61.0 163.9 -0.100 0.111 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0894 4.80e-09\n", "V_corr= -271.84545\n", "ibin= 2527 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 44.7 164.8 0.000 0.066 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 0.385 9.24e-10\n", "V_corr= -288.10972\n", "ibin= 2528 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 51.1 158.7 -0.088 0.084 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 3.55e-09\n", "V_corr= -281.69872\n", "ibin= 2529 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 64.6 178.7 -0.013 0.006 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 0.0536 2.44e-09\n", "V_corr= -268.17072\n", "ibin= 2530 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 80.7 153.6 -0.127 0.087 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.00131 2.01e-09\n", "V_corr= -252.10817\n", "ibin= 2531 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 71.7 152.8 -0.015 0.046 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.121 2.63e-09\n", "V_corr= -261.11309\n", "ibin= 2532 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 68.5 151.4 -0.087 0.016 0.000 0.000 0.732 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+04 -0.124 1.45e-09\n", "V_corr= -264.28892\n", "ibin= 2533 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 76.1 177.5 -0.093 0.074 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 4.29e+03 0.350 8.39e-10\n", "V_corr= -256.66197\n", "ibin= 2534 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 69.1 154.0 -0.007 0.037 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0713 2.09e-09\n", "V_corr= -263.68695\n", "ibin= 2535 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 84.0 164.8 0.003 0.097 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0416 1.97e-09\n", "V_corr= -248.83634\n", "ibin= 2536 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 70.5 158.1 0.056 0.114 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.102 1.65e-09\n", "V_corr= -262.26748\n", "ibin= 2537 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 76.0 149.4 0.001 0.052 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.106 1.50e-09\n", "V_corr= -256.78776\n", "ibin= 2538 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 84.7 163.0 -0.042 0.110 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.106 1.56e-09\n", "V_corr= -248.10831\n", "ibin= 2539 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 82.0 134.3 0.022 0.015 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+04 -0.00544 8.75e-10\n", "V_corr= -250.82720\n", "ibin= 2540 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 72.2 159.7 -0.047 -0.015 0.000 0.000 0.304 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0605 1.32e-09\n", "V_corr= -260.58003\n", "ibin= 2541 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 73.0 171.4 0.020 -0.010 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.199 1.48e-09\n", "V_corr= -259.81039\n", "ibin= 2542 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 71.9 110.7 -0.012 0.080 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.658 1.33e-10\n", "V_corr= -260.90149\n", "ibin= 2543 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 99.0 180.7 0.090 0.065 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0413 1.09e-09\n", "V_corr= -233.83315\n", "ibin= 2544 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 119.8 122.1 -0.047 0.038 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 4.91e+03 0.0997 3.39e-10\n", "V_corr= -212.97499\n", "ibin= 2545 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 102.7 144.5 0.081 0.057 0.000 0.000 0.300 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 0.0487 8.76e-10\n", "V_corr= -230.13026\n", "ibin= 2546 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 86.5 145.2 0.031 0.070 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 2.72e+03 0.290 1.81e-10\n", "V_corr= -246.28670\n", "ibin= 2547 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 98.3 146.5 0.053 0.014 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.235 6.54e-10\n", "V_corr= -234.51003\n", "ibin= 2548 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 115.9 154.8 -0.012 0.079 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0889 6.03e-10\n", "V_corr= -216.89275\n", "ibin= 2549 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 98.7 110.2 0.015 -0.015 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+03 -0.101 3.25e-11\n", "V_corr= -234.06609\n", "ibin= 2550 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 105.8 101.0 -0.006 0.013 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.429 4.11e-10\n", "V_corr= -227.02619\n", "ibin= 2551 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 418 105.5 212.1 0.022 0.040 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 0.202 6.79e-10\n", "V_corr= -227.32850\n", "ibin= 2552 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 126.4 137.8 0.038 0.066 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 5.03e+03 0.115 2.27e-10\n", "V_corr= -206.36008\n", "ibin= 2553 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2554 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2555 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -41.3 169.2 0.014 0.062 0.000 0.000 1.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.417 7.27e-11\n", "V_corr= -374.13305\n", "ibin= 2556 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -23.3 128.5 0.018 0.066 0.000 0.000 1.093 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 7.10e-10\n", "V_corr= -356.11157\n", "ibin= 2557 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 -36.8 115.2 0.006 0.057 0.000 0.000 0.565 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+03 -0.0605 8.60e-11\n", "V_corr= -369.65275\n", "ibin= 2558 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -59.2 142.8 0.013 0.028 0.000 0.000 1.184 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 0.137 9.33e-11\n", "V_corr= -392.00424\n", "ibin= 2559 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -5.4 135.5 0.069 0.029 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+04 -0.247 5.59e-10\n", "V_corr= -338.22845\n", "ibin= 2560 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -6.1 104.0 -0.017 0.048 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 8.11e+03 -0.406 3.50e-10\n", "V_corr= -338.92230\n", "ibin= 2561 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -52.8 155.5 0.035 0.043 0.000 0.000 0.750 NaN\n", "Ages, Metallicities, Weights:\n", " 3.93e+03 -0.0580 2.63e-10\n", "V_corr= -385.60640\n", "ibin= 2562 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -38.8 119.7 -0.016 0.017 0.000 0.000 0.778 NaN\n", "Ages, Metallicities, Weights:\n", " 2.84e+03 -0.111 2.03e-10\n", "V_corr= -371.56832\n", "ibin= 2563 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -23.9 115.3 0.010 0.036 0.000 0.000 1.134 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.555 8.08e-10\n", "V_corr= -356.69717\n", "ibin= 2564 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -25.7 129.4 -0.022 0.047 0.000 0.000 1.252 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 0.415 3.00e-10\n", "V_corr= -358.48413\n", "ibin= 2565 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -36.5 110.6 -0.005 0.018 0.000 0.000 1.334 NaN\n", "Ages, Metallicities, Weights:\n", " 8.67e+03 -0.288 5.60e-10\n", "V_corr= -369.29034\n", "ibin= 2566 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -2.4 119.0 -0.080 -0.013 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.597 8.16e-10\n", "V_corr= -335.23766\n", "ibin= 2567 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -32.8 118.0 -0.019 -0.006 0.000 0.000 1.337 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 -0.0313 1.39e-10\n", "V_corr= -365.57129\n", "ibin= 2568 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -26.1 160.3 0.031 -0.022 0.000 0.000 0.902 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.323 1.16e-09\n", "V_corr= -358.90550\n", "ibin= 2569 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -18.2 151.9 -0.034 0.052 0.000 0.000 0.902 NaN\n", "Ages, Metallicities, Weights:\n", " 3.21e+03 0.315 4.70e-10\n", "V_corr= -351.05850\n", "ibin= 2570 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -21.2 169.7 -0.072 0.037 0.000 0.000 1.090 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0953 2.04e-09\n", "V_corr= -354.00495\n", "ibin= 2571 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -7.7 130.0 -0.079 0.060 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 7.37e+03 0.00375 9.60e-10\n", "V_corr= -340.50069\n", "ibin= 2572 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 74 -17.3 130.2 -0.066 0.092 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 -0.282 1.70e-09\n", "V_corr= -350.07491\n", "ibin= 2573 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -14.4 160.1 -0.039 0.050 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0433 2.32e-09\n", "V_corr= -347.21125\n", "ibin= 2574 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -14.0 148.1 0.023 0.066 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 9.93e+03 -0.00896 1.51e-09\n", "V_corr= -346.85165\n", "ibin= 2575 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -29.7 158.0 0.000 0.088 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 7.86e+03 0.242 1.73e-09\n", "V_corr= -362.47966\n", "ibin= 2576 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -16.6 173.3 -0.106 0.013 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 0.0962 2.93e-09\n", "V_corr= -349.45511\n", "ibin= 2577 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -16.0 153.9 0.032 0.045 0.000 0.000 0.755 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0286 3.37e-09\n", "V_corr= -348.77725\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "ibin= 2578 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -19.8 170.4 -0.002 0.045 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0599 3.83e-09\n", "V_corr= -352.60407\n", "ibin= 2579 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -17.0 173.5 -0.094 0.027 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0328 4.14e-09\n", "V_corr= -349.84839\n", "ibin= 2580 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -15.3 178.1 -0.056 0.061 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.151 5.23e-09\n", "V_corr= -348.14296\n", "ibin= 2581 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -17.2 170.6 -0.029 0.040 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0139 5.60e-09\n", "V_corr= -350.05790\n", "ibin= 2582 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -16.9 177.7 0.027 0.028 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.05e+04 0.104 4.45e-09\n", "V_corr= -349.69287\n", "ibin= 2583 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 2.3 174.3 0.016 0.041 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0175 7.36e-09\n", "V_corr= -330.55334\n", "ibin= 2584 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -6.0 164.0 0.026 0.052 0.000 0.000 1.003 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 0.100 5.81e-09\n", "V_corr= -338.83357\n", "ibin= 2585 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -0.1 169.5 -0.037 0.055 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+04 0.190 8.41e-09\n", "V_corr= -332.88943\n", "ibin= 2586 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -13.0 157.1 0.053 0.112 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.207 1.44e-08\n", "V_corr= -345.77679\n", "ibin= 2587 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -3.9 146.5 -0.008 0.055 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00541 1.50e-08\n", "V_corr= -336.70383\n", "ibin= 2588 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 9.7 158.0 -0.032 0.106 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.165 1.15e-08\n", "V_corr= -323.10992\n", "ibin= 2589 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 27.7 156.4 -0.041 0.052 0.000 0.000 0.881 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0631 1.44e-08\n", "V_corr= -305.08111\n", "ibin= 2590 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 23.1 165.0 -0.031 0.082 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0198 1.15e-08\n", "V_corr= -309.67587\n", "ibin= 2591 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 20.4 170.2 -0.008 0.072 0.000 0.000 0.826 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 9.99e-09\n", "V_corr= -312.37486\n", "ibin= 2592 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 46.3 172.5 -0.034 0.073 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0267 7.96e-09\n", "V_corr= -286.52346\n", "ibin= 2593 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 43.5 167.8 -0.073 0.123 0.000 0.000 0.420 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0892 6.65e-09\n", "V_corr= -289.32906\n", "ibin= 2594 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 42.2 168.9 0.033 -0.005 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0955 5.41e-09\n", "V_corr= -290.60383\n", "ibin= 2595 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 40.4 174.3 -0.038 0.043 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 7.52e+03 0.152 2.50e-09\n", "V_corr= -292.43593\n", "ibin= 2596 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 46.9 186.1 -0.005 0.048 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 0.302 3.99e-09\n", "V_corr= -285.90032\n", "ibin= 2597 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 59.6 162.3 -0.054 0.042 0.000 0.000 0.690 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0220 3.73e-09\n", "V_corr= -273.19638\n", "ibin= 2598 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 78.8 165.4 -0.008 0.050 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0654 3.45e-09\n", "V_corr= -254.00307\n", "ibin= 2599 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 57.9 167.9 -0.082 0.023 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0169 3.08e-09\n", "V_corr= -274.91226\n", "ibin= 2600 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 56.7 172.2 -0.008 0.001 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0175 2.85e-09\n", "V_corr= -276.15299\n", "ibin= 2601 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 95 72.5 135.7 0.019 -0.006 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 5.95e+03 -0.0854 9.08e-10\n", "V_corr= -260.32497\n", "ibin= 2602 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 75.4 171.8 -0.031 0.037 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 0.0423 1.62e-09\n", "V_corr= -257.38787\n", "ibin= 2603 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 63.6 162.3 -0.032 0.024 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 9.36e+03 0.0346 1.21e-09\n", "V_corr= -269.22150\n", "ibin= 2604 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 79.8 131.7 -0.079 -0.018 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.352 1.51e-09\n", "V_corr= -253.04736\n", "ibin= 2605 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 74.6 149.8 -0.029 0.051 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.135 1.11e-09\n", "V_corr= -258.20914\n", "ibin= 2606 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 67.5 155.0 -0.033 0.003 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.117 9.75e-10\n", "V_corr= -265.33333\n", "ibin= 2607 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 101.4 152.0 -0.000 0.120 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00175 1.39e-09\n", "V_corr= -231.43841\n", "ibin= 2608 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 54.0 148.2 0.037 -0.016 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.188 1.22e-09\n", "V_corr= -278.79578\n", "ibin= 2609 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 83.8 141.2 -0.030 0.070 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.203 1.09e-09\n", "V_corr= -248.99603\n", "ibin= 2610 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 111.2 158.1 -0.037 0.041 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0563 1.23e-09\n", "V_corr= -221.56216\n", "ibin= 2611 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 80.5 155.1 -0.061 0.060 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.124 8.39e-10\n", "V_corr= -252.29902\n", "ibin= 2612 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 88.6 167.7 -0.001 0.064 0.000 0.000 0.365 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0803 9.29e-10\n", "V_corr= -244.24746\n", "ibin= 2613 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 101.2 133.3 0.057 0.045 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 0.0302 6.91e-10\n", "V_corr= -231.61210\n", "ibin= 2614 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 89.5 164.4 0.062 0.049 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 3.94e+03 0.419 3.00e-10\n", "V_corr= -243.26536\n", "ibin= 2615 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 66.8 167.6 -0.013 0.010 0.000 0.000 0.340 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 7.14e-10\n", "V_corr= -266.05241\n", "ibin= 2616 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 338 99.3 164.3 0.011 0.091 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 0.146 6.36e-10\n", "V_corr= -233.49814\n", "ibin= 2617 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 114.2 74.1 -0.016 -0.000 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 8.93e+03 -0.934 1.67e-10\n", "V_corr= -218.63797\n", "ibin= 2618 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 76.5 191.8 -0.086 0.000 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 1.76e+03 0.689 1.33e-10\n", "V_corr= -256.29025\n", "ibin= 2619 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 100.2 160.0 -0.014 -0.031 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 0.0879 4.94e-10\n", "V_corr= -232.59160\n", "ibin= 2620 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 107.1 152.2 0.034 -0.025 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 662. 0.473 3.25e-11\n", "V_corr= -225.73005\n", "ibin= 2621 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 127.4 142.9 -0.003 0.033 0.000 0.000 0.673 NaN\n", "Ages, Metallicities, Weights:\n", " 955. 0.675 5.59e-11\n", "V_corr= -205.36741\n", "ibin= 2622 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2623 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2624 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -50.7 195.9 0.029 0.053 0.000 0.000 1.536 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 2.68e+03 0.375 1.89e-10\n", "V_corr= -383.54497\n", "ibin= 2625 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 -19.8 147.4 0.041 -0.011 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 3.82e+03 -0.111 2.07e-10\n", "V_corr= -352.57305\n", "ibin= 2626 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 -7.4 121.3 -0.016 0.026 0.000 0.000 2.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.310 6.72e-10\n", "V_corr= -340.19192\n", "ibin= 2627 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -30.2 144.4 -0.032 0.030 0.000 0.000 1.814 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.205 6.53e-10\n", "V_corr= -362.95904\n", "ibin= 2628 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -26.0 147.5 -0.038 0.004 0.000 0.000 0.777 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+04 -0.128 5.36e-10\n", "V_corr= -358.81154\n", "ibin= 2629 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -28.4 103.3 0.010 0.056 0.000 0.000 0.769 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.423 7.48e-10\n", "V_corr= -361.24709\n", "ibin= 2630 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -27.1 93.7 -0.022 0.003 0.000 0.000 1.171 NaN\n", "Ages, Metallicities, Weights:\n", " 5.00e+03 -0.481 2.57e-10\n", "V_corr= -359.87904\n", "ibin= 2631 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -20.4 172.7 -0.000 0.100 0.000 0.000 1.141 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.166 9.85e-10\n", "V_corr= -353.17877\n", "ibin= 2632 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -17.2 116.0 0.018 0.035 0.000 0.000 2.807 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.374 9.23e-10\n", "V_corr= -350.02976\n", "ibin= 2633 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -31.9 114.6 -0.061 0.051 0.000 0.000 0.988 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.302 1.03e-09\n", "V_corr= -364.66658\n", "ibin= 2634 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -28.4 112.4 0.027 0.015 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 5.88e+03 -0.168 4.64e-10\n", "V_corr= -361.20612\n", "ibin= 2635 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -21.4 156.2 0.049 0.024 0.000 0.000 0.797 NaN\n", "Ages, Metallicities, Weights:\n", " 6.10e+03 -0.122 5.48e-10\n", "V_corr= -354.20982\n", "ibin= 2636 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -16.5 144.5 0.020 0.053 0.000 0.000 0.974 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.219 1.39e-09\n", "V_corr= -349.34347\n", "ibin= 2637 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -28.3 164.8 0.010 -0.005 0.000 0.000 1.054 NaN\n", "Ages, Metallicities, Weights:\n", " 2.15e+03 0.473 3.70e-10\n", "V_corr= -361.12188\n", "ibin= 2638 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 69 -23.8 100.5 -0.000 -0.000 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 5.32e+03 -0.338 5.14e-10\n", "V_corr= -356.58198\n", "ibin= 2639 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -11.3 147.1 0.009 0.042 0.000 0.000 1.035 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 0.524 4.64e-10\n", "V_corr= -344.10382\n", "ibin= 2640 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -44.5 155.1 0.003 0.035 0.000 0.000 0.566 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 0.00349 1.71e-09\n", "V_corr= -377.34570\n", "ibin= 2641 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -21.0 159.1 0.022 0.019 0.000 0.000 0.762 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.0831 1.59e-09\n", "V_corr= -353.84063\n", "ibin= 2642 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -35.3 146.1 0.073 0.044 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.109 2.27e-09\n", "V_corr= -368.10285\n", "ibin= 2643 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -20.6 143.2 0.014 0.030 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.0979 2.21e-09\n", "V_corr= -353.39206\n", "ibin= 2644 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -11.8 164.5 0.023 0.039 0.000 0.000 0.678 NaN\n", "Ages, Metallicities, Weights:\n", " 8.86e+03 -0.00366 1.57e-09\n", "V_corr= -344.56051\n", "ibin= 2645 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -7.7 130.9 -0.050 0.085 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 4.02e+03 0.117 8.80e-10\n", "V_corr= -340.52812\n", "ibin= 2646 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -17.7 160.9 0.020 0.026 0.000 0.000 0.750 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.130 3.25e-09\n", "V_corr= -350.48255\n", "ibin= 2647 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 -29.6 158.2 -0.038 -0.020 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 5.45e+03 -0.0288 1.34e-09\n", "V_corr= -362.45749\n", "ibin= 2648 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -19.5 167.6 -0.020 0.073 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0598 3.98e-09\n", "V_corr= -352.30659\n", "ibin= 2649 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 -12.9 151.0 -0.039 0.020 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0345 4.76e-09\n", "V_corr= -345.66125\n", "ibin= 2650 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -19.8 167.6 0.003 0.049 0.000 0.000 0.630 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 0.0479 3.97e-09\n", "V_corr= -352.60614\n", "ibin= 2651 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -24.3 159.4 0.052 0.091 0.000 0.000 0.574 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0410 6.21e-09\n", "V_corr= -357.10388\n", "ibin= 2652 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -8.0 169.9 -0.031 0.098 0.000 0.000 0.552 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.189 7.81e-09\n", "V_corr= -340.80164\n", "ibin= 2653 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -6.6 166.3 0.023 0.083 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0253 8.21e-09\n", "V_corr= -339.37991\n", "ibin= 2654 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -1.7 147.7 -0.005 0.107 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.0919 7.08e-09\n", "V_corr= -334.50464\n", "ibin= 2655 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -1.6 166.3 0.000 0.033 0.000 0.000 0.740 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0377 1.09e-08\n", "V_corr= -334.45649\n", "ibin= 2656 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 1.9 165.7 -0.040 0.043 0.000 0.000 0.367 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.124 1.26e-08\n", "V_corr= -330.90573\n", "ibin= 2657 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 4.3 170.6 0.010 0.082 0.000 0.000 0.838 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.160 1.31e-08\n", "V_corr= -328.53274\n", "ibin= 2658 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 9.2 175.3 -0.020 0.039 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.101 1.20e-08\n", "V_corr= -323.65159\n", "ibin= 2659 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 15.1 180.9 -0.023 0.065 0.000 0.000 1.195 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+04 0.125 1.04e-08\n", "V_corr= -317.73267\n", "ibin= 2660 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 32.1 178.6 -0.060 0.045 0.000 0.000 0.661 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0333 8.56e-09\n", "V_corr= -300.71921\n", "ibin= 2661 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 31.3 181.0 -0.060 -0.034 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0907 6.91e-09\n", "V_corr= -301.51100\n", "ibin= 2662 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 44.6 180.6 -0.066 0.069 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 0.180 6.24e-09\n", "V_corr= -288.15908\n", "ibin= 2663 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 30.3 179.8 -0.061 0.048 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0641 5.18e-09\n", "V_corr= -302.50703\n", "ibin= 2664 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 46.0 183.7 -0.031 0.026 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0592 3.93e-09\n", "V_corr= -286.80828\n", "ibin= 2665 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 50.5 164.4 -0.031 0.138 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 0.271 3.71e-09\n", "V_corr= -282.33556\n", "ibin= 2666 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 54.2 173.2 -0.075 0.030 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 8.17e+03 0.116 1.99e-09\n", "V_corr= -278.63905\n", "ibin= 2667 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 47.7 167.2 -0.067 0.082 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.108 3.33e-09\n", "V_corr= -285.12407\n", "ibin= 2668 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 68.7 147.1 -0.025 0.010 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0857 2.74e-09\n", "V_corr= -264.10675\n", "ibin= 2669 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 76.5 152.3 -0.113 0.018 0.000 0.000 0.326 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 2.26e-09\n", "V_corr= -256.33359\n", "ibin= 2670 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 58.0 167.1 -0.012 0.077 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0266 2.39e-09\n", "V_corr= -274.79276\n", "ibin= 2671 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 72.6 164.6 -0.051 0.037 0.000 0.000 0.426 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0251 2.12e-09\n", "V_corr= -260.22505\n", "ibin= 2672 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 37.8 179.4 -0.028 -0.061 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 1.89e-09\n", "V_corr= -295.02667\n", "ibin= 2673 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 68.1 142.0 -0.074 0.068 0.000 0.000 0.659 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00619 1.70e-09\n", "V_corr= -264.69002\n", "ibin= 2674 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 73.4 150.4 -0.012 0.058 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0424 1.56e-09\n", "V_corr= -259.40876\n", "ibin= 2675 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 103.1 174.9 -0.015 0.015 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0305 1.50e-09\n", "V_corr= -229.71286\n", "ibin= 2676 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 73.0 164.4 0.070 0.164 0.000 0.000 0.369 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 0.568 2.12e-09\n", "V_corr= -259.77942\n", "ibin= 2677 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 80.1 146.0 0.013 0.040 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.162 1.09e-09\n", "V_corr= -252.66548\n", "ibin= 2678 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 78.4 144.6 0.027 0.118 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 0.0266 9.86e-10\n", "V_corr= -254.44675\n", "ibin= 2679 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 89.4 145.4 0.029 0.025 0.000 0.000 0.647 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.157 1.03e-09\n", "V_corr= -243.45756\n", "ibin= 2680 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 106.3 154.5 -0.005 0.054 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0260 1.05e-09\n", "V_corr= -226.51064\n", "ibin= 2681 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 83.8 152.0 0.037 0.057 0.000 0.000 0.307 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0234 9.56e-10\n", "V_corr= -248.96573\n", "ibin= 2682 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 101.6 126.0 -0.023 0.011 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.133 8.22e-10\n", "V_corr= -231.19923\n", "ibin= 2683 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 95.8 138.9 0.000 0.070 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.198 6.92e-10\n", "V_corr= -237.01659\n", "ibin= 2684 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 57.7 100.5 -0.028 0.011 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 4.75e+03 -0.230 1.96e-10\n", "V_corr= -275.09040\n", "ibin= 2685 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 93.0 98.2 0.001 0.052 0.000 0.000 0.781 NaN\n", "Ages, Metallicities, Weights:\n", " 936. 0.689 6.51e-11\n", "V_corr= -239.82600\n", "ibin= 2686 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 57.4 163.9 -0.034 0.027 0.000 0.000 0.260 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+03 0.439 6.64e-11\n", "V_corr= -275.38483\n", "ibin= 2687 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 121.0 128.7 0.008 0.012 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 5.91e+03 -0.163 1.89e-10\n", "V_corr= -211.82138\n", "ibin= 2688 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 127.5 146.3 -0.028 0.029 0.000 0.000 0.712 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 -0.381 2.31e-10\n", "V_corr= -205.26874\n", "ibin= 2689 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 185 123.9 180.7 -0.004 -0.030 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 1.28e-09\n", "V_corr= -208.93258\n", "ibin= 2690 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 119.1 171.8 0.033 0.067 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0367 4.89e-10\n", "V_corr= -213.72492\n", "ibin= 2691 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2692 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2693 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -23.5 155.0 0.049 -0.005 0.000 0.000 2.127 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 6.93e-10\n", "V_corr= -356.26168\n", "ibin= 2694 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -30.1 123.7 0.031 0.008 0.000 0.000 1.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 7.46e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -362.93611\n", "ibin= 2695 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 225 -52.5 103.6 0.030 0.040 0.000 0.000 0.949 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.426 6.59e-10\n", "V_corr= -385.30004\n", "ibin= 2696 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 -59.3 126.9 0.048 0.023 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 4.65e+03 -0.248 2.50e-10\n", "V_corr= -392.09620\n", "ibin= 2697 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -8.4 143.0 0.018 0.123 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.169 8.67e-10\n", "V_corr= -341.25131\n", "ibin= 2698 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -10.3 146.8 0.017 -0.009 0.000 0.000 0.887 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+04 -0.212 6.88e-10\n", "V_corr= -343.10435\n", "ibin= 2699 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -68.1 165.0 0.048 0.024 0.000 0.000 1.048 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 0.516 1.46e-10\n", "V_corr= -400.91634\n", "ibin= 2700 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -21.0 189.0 0.010 0.071 0.000 0.000 1.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 0.157 1.17e-09\n", "V_corr= -353.82277\n", "ibin= 2701 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -49.5 127.3 -0.003 0.028 0.000 0.000 0.689 NaN\n", "Ages, Metallicities, Weights:\n", " 6.07e+03 -0.00382 4.79e-10\n", "V_corr= -382.26654\n", "ibin= 2702 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -38.1 126.8 0.059 0.056 0.000 0.000 0.736 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.287 9.36e-10\n", "V_corr= -370.93855\n", "ibin= 2703 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -19.3 126.2 0.057 0.080 0.000 0.000 1.155 NaN\n", "Ages, Metallicities, Weights:\n", " 3.27e+03 0.270 3.49e-10\n", "V_corr= -352.11927\n", "ibin= 2704 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 4.2 168.7 -0.000 0.002 0.000 0.000 0.968 NaN\n", "Ages, Metallicities, Weights:\n", " 2.37e+03 0.209 2.79e-10\n", "V_corr= -328.62614\n", "ibin= 2705 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -32.5 148.4 0.021 0.021 0.000 0.000 0.815 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+03 0.500 2.35e-10\n", "V_corr= -365.32159\n", "ibin= 2706 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -32.7 163.2 0.124 0.040 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 -0.0484 1.53e-09\n", "V_corr= -365.55777\n", "ibin= 2707 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -16.2 163.7 -0.032 0.058 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.213 1.57e-09\n", "V_corr= -349.01698\n", "ibin= 2708 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -33.7 153.6 0.018 0.080 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 4.91e+03 0.259 7.24e-10\n", "V_corr= -366.50707\n", "ibin= 2709 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -18.8 158.0 0.038 0.030 0.000 0.000 0.770 NaN\n", "Ages, Metallicities, Weights:\n", " 7.31e+03 -0.00545 9.55e-10\n", "V_corr= -351.62461\n", "ibin= 2710 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -5.4 154.0 0.006 0.092 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0305 2.21e-09\n", "V_corr= -338.19429\n", "ibin= 2711 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -28.2 147.6 0.058 0.070 0.000 0.000 0.883 NaN\n", "Ages, Metallicities, Weights:\n", " 4.57e+03 0.154 7.89e-10\n", "V_corr= -360.98210\n", "ibin= 2712 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -24.5 144.9 0.014 -0.006 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.172 2.46e-09\n", "V_corr= -357.30874\n", "ibin= 2713 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -30.8 166.2 0.008 0.037 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0153 2.95e-09\n", "V_corr= -363.60922\n", "ibin= 2714 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -28.8 146.2 0.048 0.034 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 0.000707 2.60e-09\n", "V_corr= -361.58201\n", "ibin= 2715 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -7.7 173.6 -0.069 0.006 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0230 3.64e-09\n", "V_corr= -340.52918\n", "ibin= 2716 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -35.3 145.2 -0.026 0.069 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 9.64e+03 0.000109 2.09e-09\n", "V_corr= -368.14353\n", "ibin= 2717 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -16.1 164.8 -0.015 -0.005 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.0592 2.47e-09\n", "V_corr= -348.87051\n", "ibin= 2718 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -16.7 177.6 0.021 0.034 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.154 5.11e-09\n", "V_corr= -349.51980\n", "ibin= 2719 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -13.2 177.9 -0.026 0.056 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 0.133 4.07e-09\n", "V_corr= -345.96795\n", "ibin= 2720 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -19.1 159.1 0.026 0.067 0.000 0.000 0.729 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 0.0593 3.86e-09\n", "V_corr= -351.91827\n", "ibin= 2721 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -21.6 163.6 0.035 0.092 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 5.09e+03 0.239 2.59e-09\n", "V_corr= -354.41427\n", "ibin= 2722 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -8.0 171.8 0.005 0.082 0.000 0.000 0.778 NaN\n", "Ages, Metallicities, Weights:\n", " 9.39e+03 0.173 5.10e-09\n", "V_corr= -340.77829\n", "ibin= 2723 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -17.6 158.0 0.002 0.063 0.000 0.000 0.765 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0758 8.83e-09\n", "V_corr= -350.41132\n", "ibin= 2724 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -9.0 178.3 0.011 0.032 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0978 9.84e-09\n", "V_corr= -341.85704\n", "ibin= 2725 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 1.2 172.4 -0.039 0.018 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.100 7.38e-09\n", "V_corr= -331.64648\n", "ibin= 2726 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 1.8 172.7 -0.044 0.075 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.147 1.04e-08\n", "V_corr= -331.01734\n", "ibin= 2727 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 9.2 179.0 -0.025 0.036 0.000 0.000 0.632 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0625 9.64e-09\n", "V_corr= -323.61779\n", "ibin= 2728 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 20.5 175.1 -0.044 0.042 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0476 8.58e-09\n", "V_corr= -312.34003\n", "ibin= 2729 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 18.4 178.3 -0.003 0.072 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.113 7.77e-09\n", "V_corr= -314.40039\n", "ibin= 2730 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 23.1 186.5 -0.014 0.076 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 0.242 6.52e-09\n", "V_corr= -309.69555\n", "ibin= 2731 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 34.5 164.8 -0.043 0.090 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0177 5.45e-09\n", "V_corr= -298.31863\n", "ibin= 2732 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 30.2 194.4 -0.046 0.031 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.172 5.27e-09\n", "V_corr= -302.60133\n", "ibin= 2733 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 47.0 180.0 0.037 0.057 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0539 3.92e-09\n", "V_corr= -285.76069\n", "ibin= 2734 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 26.9 181.9 -0.012 0.056 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0805 3.34e-09\n", "V_corr= -305.92877\n", "ibin= 2735 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 51.5 204.7 -0.091 0.023 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.598 6.37e-09\n", "V_corr= -281.26815\n", "ibin= 2736 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 55.0 163.6 -0.023 -0.010 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 7.17e+03 -0.0603 1.32e-09\n", "V_corr= -277.84491\n", "ibin= 2737 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 72.9 167.7 -0.070 0.003 0.000 0.000 0.821 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.103 2.57e-09\n", "V_corr= -259.95529\n", "ibin= 2738 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 63.7 169.3 0.006 0.104 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.128 2.55e-09\n", "V_corr= -269.12448\n", "ibin= 2739 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 60.1 147.1 0.027 0.096 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0601 2.24e-09\n", "V_corr= -272.66310\n", "ibin= 2740 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 99.1 174.5 -0.034 0.045 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0235 1.94e-09\n", "V_corr= -233.75473\n", "ibin= 2741 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 63.5 147.3 -0.038 0.054 0.000 0.000 0.388 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.95e+03 0.479 3.35e-10\n", "V_corr= -269.33141\n", "ibin= 2742 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 62.5 130.3 0.011 0.049 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 6.64e+03 -0.124 6.09e-10\n", "V_corr= -270.35340\n", "ibin= 2743 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 93.0 160.7 0.002 0.082 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0501 1.45e-09\n", "V_corr= -239.84951\n", "ibin= 2744 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 78.9 169.9 0.042 0.043 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 0.220 3.34e-10\n", "V_corr= -253.86380\n", "ibin= 2745 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 67.2 115.1 0.027 0.096 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 5.56e+03 -0.0856 4.37e-10\n", "V_corr= -265.56531\n", "ibin= 2746 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 71.2 161.4 0.032 -0.045 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 -0.115 1.04e-09\n", "V_corr= -261.56583\n", "ibin= 2747 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 81.2 154.2 -0.062 -0.036 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 -0.147 7.43e-10\n", "V_corr= -251.59038\n", "ibin= 2748 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 78.6 151.8 -0.047 0.023 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 0.159 2.15e-10\n", "V_corr= -254.19219\n", "ibin= 2749 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 58.8 145.9 -0.091 0.049 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 4.08e+03 -0.0172 2.45e-10\n", "V_corr= -274.01731\n", "ibin= 2750 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 93.3 135.7 -0.001 0.046 0.000 0.000 0.658 NaN\n", "Ages, Metallicities, Weights:\n", " 2.64e+03 0.102 1.64e-10\n", "V_corr= -239.51081\n", "ibin= 2751 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 102.0 152.8 -0.069 0.022 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+03 0.673 1.11e-10\n", "V_corr= -230.81536\n", "ibin= 2752 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 97.1 132.6 -0.002 -0.012 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.329 6.06e-10\n", "V_corr= -235.73771\n", "ibin= 2753 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 95.1 144.9 0.068 -0.005 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.350 5.54e-10\n", "V_corr= -237.72824\n", "ibin= 2754 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 69.5 192.3 -0.066 0.040 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 2.13e+03 0.574 1.50e-10\n", "V_corr= -263.33026\n", "ibin= 2755 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 66.3 159.5 -0.004 -0.009 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 0.343 9.45e-11\n", "V_corr= -266.46721\n", "ibin= 2756 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 115.8 260.0 0.004 0.089 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.459 7.55e-10\n", "V_corr= -216.98909\n", "ibin= 2757 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 79.0 152.4 -0.019 0.041 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 -0.278 3.57e-10\n", "V_corr= -253.77873\n", "ibin= 2758 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 120.9 213.5 -0.003 0.048 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.110 5.07e-10\n", "V_corr= -211.94231\n", "ibin= 2759 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 145.3 226.8 -0.035 0.044 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 0.276 5.68e-10\n", "V_corr= -187.51114\n", "ibin= 2760 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2761 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2762 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -4.4 221.8 0.001 -0.010 0.000 0.000 0.747 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 0.459 1.76e-10\n", "V_corr= -337.23181\n", "ibin= 2763 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 -0.2 115.6 0.051 0.032 0.000 0.000 2.246 NaN\n", "Ages, Metallicities, Weights:\n", " 5.95e+03 -0.407 2.49e-10\n", "V_corr= -332.97702\n", "ibin= 2764 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -64.4 122.5 0.088 -0.002 0.000 0.000 1.010 NaN\n", "Ages, Metallicities, Weights:\n", " 5.02e+03 0.0472 3.18e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -397.16448\n", "ibin= 2765 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -27.1 119.0 -0.036 -0.019 0.000 0.000 0.776 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.445 5.91e-10\n", "V_corr= -359.94896\n", "ibin= 2766 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -43.1 94.7 -0.017 0.009 0.000 0.000 1.011 NaN\n", "Ages, Metallicities, Weights:\n", " 2.56e+03 -0.424 1.37e-10\n", "V_corr= -375.93522\n", "ibin= 2767 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -59.4 149.8 0.032 0.063 0.000 0.000 1.121 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+03 0.648 1.47e-10\n", "V_corr= -392.23519\n", "ibin= 2768 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -32.5 112.6 -0.065 0.070 0.000 0.000 0.686 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.250 9.39e-10\n", "V_corr= -365.31734\n", "ibin= 2769 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -17.5 131.8 -0.001 -0.004 0.000 0.000 1.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+04 -0.167 7.71e-10\n", "V_corr= -350.33671\n", "ibin= 2770 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 -29.3 117.5 -0.091 0.039 0.000 0.000 1.306 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 1.09e-09\n", "V_corr= -362.08913\n", "ibin= 2771 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -30.0 139.5 -0.054 0.041 0.000 0.000 1.159 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.151 1.19e-09\n", "V_corr= -362.77993\n", "ibin= 2772 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -32.5 115.5 0.052 0.067 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.310 1.11e-09\n", "V_corr= -365.27654\n", "ibin= 2773 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -36.5 151.6 0.029 0.018 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 8.10e+03 0.00286 7.59e-10\n", "V_corr= -369.29434\n", "ibin= 2774 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -40.0 173.0 0.061 -0.002 0.000 0.000 0.887 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.133 1.50e-09\n", "V_corr= -372.82766\n", "ibin= 2775 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -27.3 163.0 -0.022 -0.035 0.000 0.000 0.820 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.127 1.54e-09\n", "V_corr= -360.06630\n", "ibin= 2776 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -17.3 158.8 -0.052 0.057 0.000 0.000 0.718 NaN\n", "Ages, Metallicities, Weights:\n", " 8.21e+03 0.00731 9.27e-10\n", "V_corr= -350.14285\n", "ibin= 2777 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -22.6 121.0 0.030 0.049 0.000 0.000 0.883 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.339 1.54e-09\n", "V_corr= -355.42299\n", "ibin= 2778 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -34.6 168.0 0.027 0.033 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0559 2.15e-09\n", "V_corr= -367.38810\n", "ibin= 2779 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -30.2 131.7 -0.012 0.079 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.134 2.02e-09\n", "V_corr= -362.96026\n", "ibin= 2780 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -32.5 151.9 -0.034 -0.028 0.000 0.000 0.853 NaN\n", "Ages, Metallicities, Weights:\n", " 8.14e+03 -0.0183 1.25e-09\n", "V_corr= -365.32511\n", "ibin= 2781 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 -27.1 146.6 0.028 0.053 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 8.38e+03 0.119 1.53e-09\n", "V_corr= -359.91652\n", "ibin= 2782 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -48.0 170.7 0.064 0.058 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.164 3.20e-09\n", "V_corr= -380.84312\n", "ibin= 2783 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -32.9 160.7 0.020 0.005 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 3.94e+03 0.196 9.43e-10\n", "V_corr= -365.67769\n", "ibin= 2784 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -22.3 172.1 -0.024 0.078 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.200 3.86e-09\n", "V_corr= -355.10071\n", "ibin= 2785 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -18.6 179.7 0.048 0.040 0.000 0.000 1.057 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 0.372 1.25e-09\n", "V_corr= -351.42991\n", "ibin= 2786 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -18.3 152.9 -0.039 0.072 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0638 3.61e-09\n", "V_corr= -351.15720\n", "ibin= 2787 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -21.3 171.9 0.036 0.000 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0523 4.36e-09\n", "V_corr= -354.15397\n", "ibin= 2788 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -20.6 168.1 -0.008 0.061 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.0448 4.14e-09\n", "V_corr= -353.37426\n", "ibin= 2789 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -13.5 162.4 -0.018 0.034 0.000 0.000 0.826 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+04 0.0476 5.71e-09\n", "V_corr= -346.28963\n", "ibin= 2790 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -13.8 168.2 -0.043 0.050 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 0.0798 6.06e-09\n", "V_corr= -346.59552\n", "ibin= 2791 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -9.4 164.3 0.007 0.020 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.000899 6.85e-09\n", "V_corr= -342.22503\n", "ibin= 2792 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -6.0 181.5 -0.002 0.053 0.000 0.000 0.792 NaN\n", "Ages, Metallicities, Weights:\n", " 9.84e+03 0.211 5.35e-09\n", "V_corr= -338.80069\n", "ibin= 2793 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -20.6 174.5 0.023 0.032 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0701 8.28e-09\n", "V_corr= -353.44810\n", "ibin= 2794 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -10.7 175.2 -0.013 0.070 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 5.41e+03 0.377 3.66e-09\n", "V_corr= -343.47815\n", "ibin= 2795 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 4.9 174.0 -0.007 0.010 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0267 8.30e-09\n", "V_corr= -327.93112\n", "ibin= 2796 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 5.4 186.5 -0.027 0.044 0.000 0.000 0.548 NaN\n", "Ages, Metallicities, Weights:\n", " 9.94e+03 0.185 5.51e-09\n", "V_corr= -327.41464\n", "ibin= 2797 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 14.8 170.3 -0.016 0.047 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0481 7.33e-09\n", "V_corr= -318.01818\n", "ibin= 2798 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 8.4 197.0 -0.062 0.088 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 0.462 8.84e-09\n", "V_corr= -324.38609\n", "ibin= 2799 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 13.3 195.1 -0.069 0.051 0.000 0.000 0.753 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.134 6.13e-09\n", "V_corr= -319.49522\n", "ibin= 2800 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 28.9 188.1 0.000 0.037 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0457 5.16e-09\n", "V_corr= -303.88833\n", "ibin= 2801 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 34.8 167.5 -0.039 0.092 0.000 0.000 0.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.103 4.47e-09\n", "V_corr= -297.99688\n", "ibin= 2802 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 25.1 200.1 -0.024 0.053 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0704 3.92e-09\n", "V_corr= -307.70773\n", "ibin= 2803 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 43.3 163.8 -0.075 0.097 0.000 0.000 0.690 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.195 3.45e-09\n", "V_corr= -289.53645\n", "ibin= 2804 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 48.4 180.4 -0.071 0.023 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 4.87e+03 0.207 1.09e-09\n", "V_corr= -284.39411\n", "ibin= 2805 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 49.7 145.4 0.045 0.067 0.000 0.000 0.787 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.153 1.57e-09\n", "V_corr= -283.08332\n", "ibin= 2806 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 70.8 188.7 0.009 0.029 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0149 2.42e-09\n", "V_corr= -262.05394\n", "ibin= 2807 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 63.9 154.1 -0.083 0.051 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.244 1.90e-09\n", "V_corr= -268.86161\n", "ibin= 2808 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 69.3 137.4 -0.057 0.049 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.200 1.81e-09\n", "V_corr= -263.54277\n", "ibin= 2809 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 55.1 161.5 -0.008 0.044 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0409 1.83e-09\n", "V_corr= -277.74296\n", "ibin= 2810 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 202 85.1 157.1 -0.092 0.010 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.130 1.53e-09\n", "V_corr= -247.74876\n", "ibin= 2811 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 32.1 177.0 -0.090 0.074 0.000 0.000 0.491 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 3.48e+03 0.405 4.30e-10\n", "V_corr= -300.65899\n", "ibin= 2812 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 59.1 139.9 -0.029 0.062 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 -0.0429 8.82e-10\n", "V_corr= -273.67371\n", "ibin= 2813 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 71.3 182.0 -0.027 0.020 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.139 1.53e-09\n", "V_corr= -261.50838\n", "ibin= 2814 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 61.1 131.9 0.018 0.119 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+03 0.637 1.38e-10\n", "V_corr= -271.66174\n", "ibin= 2815 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 91.4 148.4 0.012 0.094 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 4.78e+03 0.168 4.06e-10\n", "V_corr= -241.41078\n", "ibin= 2816 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 69.9 174.2 -0.046 0.017 0.000 0.000 0.720 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 2.90e-09\n", "V_corr= -262.87623\n", "ibin= 2817 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 92.6 106.0 -0.052 -0.031 0.000 0.000 0.260 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.225 8.82e-10\n", "V_corr= -240.23702\n", "ibin= 2818 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 67.6 123.4 0.079 0.024 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 765. 0.624 6.56e-11\n", "V_corr= -265.16552\n", "ibin= 2819 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 101.8 131.4 -0.073 -0.024 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 4.74e+03 -0.427 1.97e-10\n", "V_corr= -230.99475\n", "ibin= 2820 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 95.9 113.8 0.026 0.009 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.546 5.44e-10\n", "V_corr= -236.94311\n", "ibin= 2821 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 88.3 134.5 0.014 0.001 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.188 6.54e-10\n", "V_corr= -244.51855\n", "ibin= 2822 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 87.2 96.4 -0.012 0.013 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 4.86e+03 -0.162 1.94e-10\n", "V_corr= -245.58525\n", "ibin= 2823 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 84.3 124.0 -0.055 0.019 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.333 5.23e-10\n", "V_corr= -248.51042\n", "ibin= 2824 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 351 141.7 81.2 0.016 -0.003 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+03 -0.124 4.22e-11\n", "V_corr= -191.09722\n", "ibin= 2825 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 306 86.3 191.8 0.014 0.056 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 1.27e-09\n", "V_corr= -246.47512\n", "ibin= 2826 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 226 119.7 188.1 0.003 -0.024 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.540 8.13e-10\n", "V_corr= -213.10192\n", "ibin= 2827 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 70.9 167.2 -0.034 -0.029 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.169 4.60e-10\n", "V_corr= -261.89756\n", "ibin= 2828 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 221 101.0 121.7 0.033 0.014 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 602. 0.689 3.14e-11\n", "V_corr= -231.77377\n", "ibin= 2829 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2830 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2831 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -42.4 168.2 0.054 0.038 0.000 0.000 1.241 NaN\n", "Ages, Metallicities, Weights:\n", " 3.87e+03 -0.0951 2.05e-10\n", "V_corr= -375.25107\n", "ibin= 2832 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -31.7 160.6 0.070 0.048 0.000 0.000 2.056 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.191 7.74e-10\n", "V_corr= -364.52184\n", "ibin= 2833 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -50.2 111.5 0.026 -0.004 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 2.65e+03 0.0143 1.71e-10\n", "V_corr= -382.98472\n", "ibin= 2834 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -29.9 115.8 -0.047 0.014 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.391 7.57e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -362.68014\n", "ibin= 2835 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -47.3 97.8 -0.004 -0.006 0.000 0.000 2.092 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+03 0.124 8.94e-11\n", "V_corr= -380.07468\n", "ibin= 2836 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -15.8 127.8 -0.039 0.075 0.000 0.000 1.115 NaN\n", "Ages, Metallicities, Weights:\n", " 6.21e+03 -0.0589 4.05e-10\n", "V_corr= -348.56436\n", "ibin= 2837 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -39.9 137.1 0.059 -0.006 0.000 0.000 0.851 NaN\n", "Ages, Metallicities, Weights:\n", " 3.25e+03 -0.119 2.36e-10\n", "V_corr= -372.67005\n", "ibin= 2838 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -34.5 115.0 -0.052 0.035 0.000 0.000 1.010 NaN\n", "Ages, Metallicities, Weights:\n", " 5.73e+03 -0.257 3.65e-10\n", "V_corr= -367.30866\n", "ibin= 2839 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -46.6 128.9 0.026 0.014 0.000 0.000 1.643 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 -0.417 7.19e-10\n", "V_corr= -379.38469\n", "ibin= 2840 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -4.4 144.7 0.008 -0.039 0.000 0.000 1.015 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.316 1.11e-09\n", "V_corr= -337.19322\n", "ibin= 2841 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -32.5 146.4 -0.020 -0.035 0.000 0.000 0.840 NaN\n", "Ages, Metallicities, Weights:\n", " 5.13e+03 -0.0256 4.82e-10\n", "V_corr= -365.31937\n", "ibin= 2842 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -32.1 141.0 0.000 0.006 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.219 1.31e-09\n", "V_corr= -364.92135\n", "ibin= 2843 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -36.0 128.6 -0.004 -0.023 0.000 0.000 1.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.382 1.25e-09\n", "V_corr= -368.77650\n", "ibin= 2844 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -36.5 137.4 0.028 0.125 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 3.67e+03 0.266 4.65e-10\n", "V_corr= -369.27675\n", "ibin= 2845 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -27.1 150.3 -0.049 0.046 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 6.39e+03 -0.0605 7.38e-10\n", "V_corr= -359.94306\n", "ibin= 2846 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -21.1 149.6 0.014 0.001 0.000 0.000 0.899 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 -0.106 1.74e-09\n", "V_corr= -353.89757\n", "ibin= 2847 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -32.8 153.2 -0.002 0.082 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0126 2.02e-09\n", "V_corr= -365.57642\n", "ibin= 2848 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -16.6 158.0 0.046 0.050 0.000 0.000 0.391 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 -0.0609 1.51e-09\n", "V_corr= -349.45246\n", "ibin= 2849 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -20.6 151.2 -0.040 0.042 0.000 0.000 0.603 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0975 2.26e-09\n", "V_corr= -353.40656\n", "ibin= 2850 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -24.7 165.2 0.001 -0.017 0.000 0.000 0.842 NaN\n", "Ages, Metallicities, Weights:\n", " 8.81e+03 -0.0519 1.36e-09\n", "V_corr= -357.49571\n", "ibin= 2851 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -30.7 152.6 0.022 0.026 0.000 0.000 0.742 NaN\n", "Ages, Metallicities, Weights:\n", " 4.99e+03 0.0970 1.01e-09\n", "V_corr= -363.46943\n", "ibin= 2852 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 -22.9 174.2 -0.036 0.031 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.121 3.37e-09\n", "V_corr= -355.72349\n", "ibin= 2853 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -41.3 180.4 0.030 0.033 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 7.18e+03 0.238 1.90e-09\n", "V_corr= -374.09253\n", "ibin= 2854 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -24.4 145.3 -0.013 0.040 0.000 0.000 0.694 NaN\n", "Ages, Metallicities, Weights:\n", " 9.43e+03 0.00883 2.10e-09\n", "V_corr= -357.23250\n", "ibin= 2855 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -23.3 151.7 -0.014 0.047 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0829 3.72e-09\n", "V_corr= -356.11388\n", "ibin= 2856 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -13.9 151.1 -0.023 0.076 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.0379 3.40e-09\n", "V_corr= -346.71284\n", "ibin= 2857 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -18.5 165.0 0.027 0.028 0.000 0.000 0.936 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0778 4.39e-09\n", "V_corr= -351.34956\n", "ibin= 2858 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -24.8 161.7 -0.041 0.048 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0374 5.02e-09\n", "V_corr= -357.61622\n", "ibin= 2859 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -20.6 162.5 -0.032 0.045 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0716 5.39e-09\n", "V_corr= -353.45094\n", "ibin= 2860 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -14.3 173.6 0.009 0.057 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0839 6.43e-09\n", "V_corr= -347.06534\n", "ibin= 2861 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -15.4 168.5 -0.036 0.076 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0609 6.60e-09\n", "V_corr= -348.19286\n", "ibin= 2862 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -9.8 177.7 -0.036 0.082 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 4.81e+03 0.359 2.70e-09\n", "V_corr= -342.59708\n", "ibin= 2863 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 5.9 182.9 -0.013 0.010 0.000 0.000 0.372 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0429 7.20e-09\n", "V_corr= -326.86928\n", "ibin= 2864 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 5.2 184.9 -0.043 0.036 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 0.152 6.68e-09\n", "V_corr= -327.65661\n", "ibin= 2865 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -8.7 174.4 -0.002 0.101 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.119 6.74e-09\n", "V_corr= -341.53906\n", "ibin= 2866 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 8.5 174.8 -0.046 0.043 0.000 0.000 0.960 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0943 5.71e-09\n", "V_corr= -324.27434\n", "ibin= 2867 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 18.0 185.7 -0.004 0.083 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0861 5.66e-09\n", "V_corr= -314.81967\n", "ibin= 2868 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 25.5 163.3 0.010 0.123 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0204 4.70e-09\n", "V_corr= -307.27520\n", "ibin= 2869 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 12.0 183.4 -0.039 0.061 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 4.09e+03 0.412 1.62e-09\n", "V_corr= -320.85496\n", "ibin= 2870 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 29.4 162.2 0.014 0.041 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0400 3.85e-09\n", "V_corr= -303.44377\n", "ibin= 2871 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 30.6 152.1 -0.031 0.105 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0451 3.43e-09\n", "V_corr= -302.23882\n", "ibin= 2872 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 33.9 171.3 -0.077 0.043 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 9.05e+03 0.0653 1.78e-09\n", "V_corr= -298.92138\n", "ibin= 2873 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 33.8 198.7 -0.092 0.075 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 0.374 3.46e-09\n", "V_corr= -298.99143\n", "ibin= 2874 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 51.9 161.4 -0.015 0.033 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.29e+04 0.0504 1.93e-09\n", "V_corr= -280.90336\n", "ibin= 2875 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 68.9 170.3 0.050 0.023 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0196 2.36e-09\n", "V_corr= -263.90702\n", "ibin= 2876 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 53.5 132.8 0.089 0.073 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0906 1.98e-09\n", "V_corr= -279.30830\n", "ibin= 2877 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 52.3 168.7 -0.035 0.022 0.000 0.000 0.617 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00438 1.98e-09\n", "V_corr= -280.55556\n", "ibin= 2878 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 56.4 162.1 -0.043 0.022 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0814 1.69e-09\n", "V_corr= -276.45204\n", "ibin= 2879 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 72.1 160.6 0.019 0.097 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0133 1.49e-09\n", "V_corr= -260.70678\n", "ibin= 2880 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 83.7 180.5 -0.041 0.042 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.0146 1.22e-09\n", "V_corr= -249.13393\n", "ibin= 2881 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 66.5 158.9 -0.007 0.067 0.000 0.000 0.483 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 9.23e+03 0.303 9.91e-10\n", "V_corr= -266.35548\n", "ibin= 2882 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 77.6 122.0 -0.053 0.003 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.306 1.14e-09\n", "V_corr= -255.17548\n", "ibin= 2883 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 90.8 146.1 -0.042 0.042 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 2.48e+03 0.0503 2.11e-10\n", "V_corr= -241.98393\n", "ibin= 2884 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 66.6 143.6 0.010 0.007 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.265 9.95e-10\n", "V_corr= -266.16397\n", "ibin= 2885 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 83.8 132.4 0.049 -0.001 0.000 0.000 0.565 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.137 1.02e-09\n", "V_corr= -248.97513\n", "ibin= 2886 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 80.8 167.1 0.019 0.059 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00957 9.84e-10\n", "V_corr= -252.02544\n", "ibin= 2887 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 87.3 162.4 -0.033 0.057 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.173 7.82e-10\n", "V_corr= -245.48266\n", "ibin= 2888 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 57.3 149.7 -0.040 -0.036 0.000 0.000 0.656 NaN\n", "Ages, Metallicities, Weights:\n", " 5.85e+03 -0.0931 2.97e-10\n", "V_corr= -275.50551\n", "ibin= 2889 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 49.2 210.6 -0.039 -0.007 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0212 7.91e-10\n", "V_corr= -283.58352\n", "ibin= 2890 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 73.5 198.1 -0.003 0.034 0.000 0.000 0.332 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.173 7.07e-10\n", "V_corr= -259.33621\n", "ibin= 2891 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 78.2 113.4 0.050 0.044 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+03 -0.117 6.98e-11\n", "V_corr= -254.61631\n", "ibin= 2892 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 100.5 142.9 0.005 -0.048 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.270 5.08e-10\n", "V_corr= -232.29964\n", "ibin= 2893 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 94.3 144.2 0.026 0.064 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+03 0.445 6.33e-11\n", "V_corr= -238.46194\n", "ibin= 2894 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 85.7 122.1 0.043 0.029 0.000 0.000 0.327 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.554 3.07e-10\n", "V_corr= -247.15000\n", "ibin= 2895 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 80.0 168.4 -0.030 0.033 0.000 0.000 0.757 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 -0.538 2.24e-10\n", "V_corr= -252.79424\n", "ibin= 2896 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 118.1 152.8 -0.042 0.037 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0652 4.43e-10\n", "V_corr= -214.70520\n", "ibin= 2897 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 122.7 141.4 0.029 -0.014 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.413 3.68e-10\n", "V_corr= -210.07808\n", "ibin= 2898 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2899 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2900 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -43.4 171.8 0.110 0.035 0.000 0.000 1.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.336 6.77e-10\n", "V_corr= -376.24227\n", "ibin= 2901 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 -23.8 117.9 0.085 -0.008 0.000 0.000 1.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.500 6.36e-10\n", "V_corr= -356.62350\n", "ibin= 2902 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 -46.5 120.9 0.067 0.001 0.000 0.000 1.603 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.460 5.77e-10\n", "V_corr= -379.30988\n", "ibin= 2903 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 344 -66.2 152.7 0.008 0.011 0.000 0.000 1.069 NaN\n", "Ages, Metallicities, Weights:\n", " 2.09e+03 0.338 1.81e-10\n", "V_corr= -399.00300\n", "ibin= 2904 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -46.1 145.2 -0.058 0.096 0.000 0.000 2.402 NaN\n", "Ages, Metallicities, Weights:\n", " 2.61e+03 0.152 1.97e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -378.87048\n", "ibin= 2905 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -36.4 173.1 -0.036 0.097 0.000 0.000 1.238 NaN\n", "Ages, Metallicities, Weights:\n", " 3.37e+03 0.591 4.02e-10\n", "V_corr= -369.17031\n", "ibin= 2906 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -35.8 153.8 0.010 0.022 0.000 0.000 1.014 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.246 9.80e-10\n", "V_corr= -368.63127\n", "ibin= 2907 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -29.9 129.1 0.018 0.049 0.000 0.000 1.272 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+04 -0.285 6.56e-10\n", "V_corr= -362.69872\n", "ibin= 2908 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -35.2 123.9 -0.060 -0.006 0.000 0.000 1.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.359 1.01e-09\n", "V_corr= -368.05719\n", "ibin= 2909 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -30.2 152.0 0.027 0.021 0.000 0.000 0.829 NaN\n", "Ages, Metallicities, Weights:\n", " 4.65e+03 -0.0842 3.93e-10\n", "V_corr= -362.98013\n", "ibin= 2910 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -12.4 147.0 0.022 0.057 0.000 0.000 1.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.101 1.33e-09\n", "V_corr= -345.17190\n", "ibin= 2911 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -11.4 123.7 -0.076 -0.012 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 -0.132 8.50e-10\n", "V_corr= -344.18669\n", "ibin= 2912 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -38.5 141.6 -0.006 0.048 0.000 0.000 1.308 NaN\n", "Ages, Metallicities, Weights:\n", " 5.46e+03 0.0458 5.84e-10\n", "V_corr= -371.26309\n", "ibin= 2913 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -18.3 144.7 -0.002 -0.032 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.272 9.78e-10\n", "V_corr= -351.07382\n", "ibin= 2914 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -29.8 153.8 -0.050 0.062 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 6.13e+03 0.156 8.01e-10\n", "V_corr= -362.65311\n", "ibin= 2915 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -31.2 141.4 0.008 0.056 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.324 1.52e-09\n", "V_corr= -363.96982\n", "ibin= 2916 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 -39.8 177.0 -0.062 0.108 0.000 0.000 0.999 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 0.332 1.95e-09\n", "V_corr= -372.56076\n", "ibin= 2917 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -13.6 135.6 -0.020 0.016 0.000 0.000 0.829 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.243 1.90e-09\n", "V_corr= -346.39015\n", "ibin= 2918 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -16.3 149.9 -0.067 -0.005 0.000 0.000 0.920 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.0413 2.37e-09\n", "V_corr= -349.10037\n", "ibin= 2919 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -20.5 170.8 -0.027 0.078 0.000 0.000 1.154 NaN\n", "Ages, Metallicities, Weights:\n", " 7.71e+03 0.225 1.52e-09\n", "V_corr= -353.33782\n", "ibin= 2920 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -25.8 151.2 -0.038 0.047 0.000 0.000 0.642 NaN\n", "Ages, Metallicities, Weights:\n", " 8.35e+03 0.0630 1.54e-09\n", "V_corr= -358.62247\n", "ibin= 2921 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -38.4 153.2 0.000 0.016 0.000 0.000 0.706 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.0372 2.16e-09\n", "V_corr= -371.25078\n", "ibin= 2922 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -15.9 147.1 -0.066 0.067 0.000 0.000 0.780 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.0980 2.67e-09\n", "V_corr= -348.68939\n", "ibin= 2923 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -14.6 141.0 -0.058 0.048 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 -0.154 2.37e-09\n", "V_corr= -347.36859\n", "ibin= 2924 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 -29.9 157.1 0.000 0.030 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 0.0156 2.67e-09\n", "V_corr= -362.71601\n", "ibin= 2925 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -18.5 147.8 -0.005 0.060 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 7.20e+03 0.163 2.18e-09\n", "V_corr= -351.35540\n", "ibin= 2926 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -21.2 156.2 -0.053 0.020 0.000 0.000 0.767 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0566 4.36e-09\n", "V_corr= -353.99987\n", "ibin= 2927 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -19.0 162.2 -0.057 0.019 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 -0.0151 2.93e-09\n", "V_corr= -351.84479\n", "ibin= 2928 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -15.4 163.8 0.009 0.034 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.0913 3.71e-09\n", "V_corr= -348.21105\n", "ibin= 2929 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -14.8 162.1 -0.003 0.036 0.000 0.000 0.669 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0133 5.45e-09\n", "V_corr= -347.61663\n", "ibin= 2930 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -19.0 169.4 -0.020 0.041 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 6.47e+03 0.207 2.85e-09\n", "V_corr= -351.83976\n", "ibin= 2931 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -11.5 170.4 -0.036 0.043 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0345 5.85e-09\n", "V_corr= -344.31196\n", "ibin= 2932 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -21.5 177.6 0.036 0.068 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0715 6.14e-09\n", "V_corr= -354.31599\n", "ibin= 2933 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -3.0 156.2 0.013 0.035 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 8.01e+03 0.0844 3.22e-09\n", "V_corr= -335.80169\n", "ibin= 2934 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 3.6 185.7 0.022 0.011 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0242 5.89e-09\n", "V_corr= -329.19308\n", "ibin= 2935 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 5.3 180.1 -0.034 0.091 0.000 0.000 0.745 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.183 5.83e-09\n", "V_corr= -327.55743\n", "ibin= 2936 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 11.0 172.9 -0.036 0.071 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 0.0716 5.00e-09\n", "V_corr= -321.79777\n", "ibin= 2937 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 14.5 178.7 -0.070 0.095 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+04 0.211 3.28e-09\n", "V_corr= -318.27206\n", "ibin= 2938 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 19.2 186.4 -0.052 0.028 0.000 0.000 0.521 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0218 3.87e-09\n", "V_corr= -313.57502\n", "ibin= 2939 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 30.2 189.2 -0.010 0.073 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0171 3.55e-09\n", "V_corr= -302.63693\n", "ibin= 2940 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 46.2 175.5 -0.039 0.008 0.000 0.000 0.731 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.136 3.00e-09\n", "V_corr= -286.60824\n", "ibin= 2941 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 157 41.1 179.8 0.044 0.041 0.000 0.000 0.767 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0248 2.94e-09\n", "V_corr= -291.72755\n", "ibin= 2942 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 47.3 137.8 -0.026 0.174 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0344 2.45e-09\n", "V_corr= -285.53741\n", "ibin= 2943 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 47.8 165.8 0.034 0.008 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.0456 1.73e-09\n", "V_corr= -284.97608\n", "ibin= 2944 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 66.9 158.7 -0.080 0.021 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.134 2.04e-09\n", "V_corr= -265.87524\n", "ibin= 2945 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 44.1 164.9 -0.057 -0.005 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.107 1.97e-09\n", "V_corr= -288.69090\n", "ibin= 2946 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 213 59.9 188.7 0.066 0.063 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 0.137 1.90e-09\n", "V_corr= -272.91047\n", "ibin= 2947 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 65.9 155.8 -0.049 0.060 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0526 1.59e-09\n", "V_corr= -266.95781\n", "ibin= 2948 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 81.8 204.4 -0.027 0.094 0.000 0.000 0.302 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.299 1.77e-09\n", "V_corr= -251.01667\n", "ibin= 2949 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 76.5 163.2 -0.011 0.125 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.145 1.50e-09\n", "V_corr= -256.31649\n", "ibin= 2950 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 67.1 142.4 0.017 0.080 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0857 1.25e-09\n", "V_corr= -265.69922\n", "ibin= 2951 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 62.9 167.7 0.045 0.088 0.000 0.000 0.690 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.65e+04 0.183 1.37e-09\n", "V_corr= -269.93120\n", "ibin= 2952 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 41.0 190.3 -0.078 0.127 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0375 1.16e-09\n", "V_corr= -291.78283\n", "ibin= 2953 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 74.2 154.5 0.046 -0.057 0.000 0.000 0.297 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+03 0.189 1.67e-10\n", "V_corr= -258.62881\n", "ibin= 2954 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 65.7 106.0 0.043 -0.004 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+03 0.0407 6.82e-11\n", "V_corr= -267.12316\n", "ibin= 2955 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 63.3 182.2 -0.088 0.083 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.149 1.01e-09\n", "V_corr= -269.51732\n", "ibin= 2956 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 65.0 182.7 -0.056 0.031 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.234 6.61e-10\n", "V_corr= -267.79238\n", "ibin= 2957 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 76.5 137.9 0.014 -0.001 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 3.59e+03 0.145 2.01e-10\n", "V_corr= -256.35594\n", "ibin= 2958 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 85.0 151.2 -0.000 0.021 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+03 0.535 8.64e-11\n", "V_corr= -247.80880\n", "ibin= 2959 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 87.0 193.5 0.022 -0.008 0.000 0.000 0.745 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0482 6.74e-10\n", "V_corr= -245.83097\n", "ibin= 2960 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 66.5 139.9 0.044 -0.033 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 -0.0155 8.97e-11\n", "V_corr= -266.31063\n", "ibin= 2961 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 51.8 213.5 -0.064 0.081 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 0.422 8.20e-10\n", "V_corr= -281.04972\n", "ibin= 2962 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 71.8 105.7 0.039 0.041 0.000 0.000 0.313 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.639 2.64e-10\n", "V_corr= -261.00800\n", "ibin= 2963 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 260 97.1 164.9 -0.016 0.033 0.000 0.000 0.840 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+04 -0.0352 3.14e-10\n", "V_corr= -235.70995\n", "ibin= 2964 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 65.6 121.3 0.001 0.041 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.614 2.56e-10\n", "V_corr= -267.20565\n", "ibin= 2965 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 407 116.7 123.2 -0.043 0.032 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+03 0.375 6.73e-11\n", "V_corr= -216.15834\n", "ibin= 2966 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 146.9 209.4 -0.012 -0.053 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 0.206 3.64e-10\n", "V_corr= -185.91761\n", "ibin= 2967 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2968 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 2969 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -6.4 190.9 0.060 0.032 0.000 0.000 1.026 NaN\n", "Ages, Metallicities, Weights:\n", " 5.07e+03 0.179 3.24e-10\n", "V_corr= -339.23580\n", "ibin= 2970 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -30.2 81.3 -0.008 0.020 0.000 0.000 3.795 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.669 5.27e-10\n", "V_corr= -363.01131\n", "ibin= 2971 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -45.3 115.6 0.006 0.031 0.000 0.000 0.658 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.432 6.84e-10\n", "V_corr= -378.07492\n", "ibin= 2972 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -30.0 141.3 0.025 0.076 0.000 0.000 1.252 NaN\n", "Ages, Metallicities, Weights:\n", " 4.15e+03 0.247 3.11e-10\n", "V_corr= -362.85022\n", "ibin= 2973 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 -1.6 154.0 -0.054 0.013 0.000 0.000 1.011 NaN\n", "Ages, Metallicities, Weights:\n", " 3.11e+03 0.169 2.48e-10\n", "V_corr= -334.40736\n", "ibin= 2974 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -24.3 135.0 -0.009 0.028 0.000 0.000 0.672 NaN\n", "Ages, Metallicities, Weights:\n", " 2.15e+03 0.0571 1.68e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -357.11489\n", "ibin= 2975 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -27.3 131.0 -0.072 0.010 0.000 0.000 1.778 NaN\n", "Ages, Metallicities, Weights:\n", " 3.94e+03 -0.125 2.87e-10\n", "V_corr= -360.13358\n", "ibin= 2976 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -39.2 124.0 -0.008 0.050 0.000 0.000 0.704 NaN\n", "Ages, Metallicities, Weights:\n", " 8.12e+03 -0.00284 6.07e-10\n", "V_corr= -371.96444\n", "ibin= 2977 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -43.8 128.5 0.024 0.024 0.000 0.000 0.789 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.474 7.96e-10\n", "V_corr= -376.65613\n", "ibin= 2978 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -16.6 131.9 -0.079 -0.007 0.000 0.000 1.065 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+04 -0.290 8.20e-10\n", "V_corr= -349.44641\n", "ibin= 2979 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -45.4 140.4 0.054 0.096 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 6.64e+03 0.0351 6.01e-10\n", "V_corr= -378.16043\n", "ibin= 2980 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -47.5 119.6 0.002 -0.033 0.000 0.000 0.762 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.398 1.08e-09\n", "V_corr= -380.31693\n", "ibin= 2981 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -17.8 114.7 0.010 0.039 0.000 0.000 0.767 NaN\n", "Ages, Metallicities, Weights:\n", " 4.41e+03 -0.311 3.80e-10\n", "V_corr= -350.56362\n", "ibin= 2982 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -53.2 150.5 0.027 -0.005 0.000 0.000 1.062 NaN\n", "Ages, Metallicities, Weights:\n", " 2.84e+03 0.0304 3.35e-10\n", "V_corr= -386.04883\n", "ibin= 2983 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -37.5 172.2 -0.039 0.011 0.000 0.000 0.791 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 -0.0279 1.13e-09\n", "V_corr= -370.31645\n", "ibin= 2984 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -31.2 166.7 -0.017 0.046 0.000 0.000 0.892 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 0.203 2.00e-09\n", "V_corr= -364.05184\n", "ibin= 2985 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -34.6 112.6 0.069 0.039 0.000 0.000 0.981 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.248 1.72e-09\n", "V_corr= -367.43086\n", "ibin= 2986 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -40.7 174.9 0.011 0.094 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.130 2.29e-09\n", "V_corr= -373.47537\n", "ibin= 2987 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -38.4 169.2 -0.002 0.031 0.000 0.000 0.927 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+04 -0.0224 1.40e-09\n", "V_corr= -371.23914\n", "ibin= 2988 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -28.9 164.8 0.060 0.046 0.000 0.000 1.073 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0316 2.49e-09\n", "V_corr= -361.72365\n", "ibin= 2989 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -31.1 171.1 -0.022 0.084 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 0.107 2.03e-09\n", "V_corr= -363.86194\n", "ibin= 2990 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -24.5 151.2 -0.031 0.064 0.000 0.000 0.850 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0453 2.78e-09\n", "V_corr= -357.30197\n", "ibin= 2991 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -34.6 158.6 0.010 0.038 0.000 0.000 0.902 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 -0.105 2.71e-09\n", "V_corr= -367.39587\n", "ibin= 2992 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -26.0 151.8 -0.061 0.051 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0153 3.40e-09\n", "V_corr= -358.81770\n", "ibin= 2993 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -31.3 162.5 -0.003 0.047 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 9.99e+03 0.0391 2.25e-09\n", "V_corr= -364.10727\n", "ibin= 2994 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -14.9 159.2 0.011 0.048 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00846 3.83e-09\n", "V_corr= -347.74755\n", "ibin= 2995 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -26.1 155.6 -0.020 0.066 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 5.61e+03 0.178 1.68e-09\n", "V_corr= -358.90641\n", "ibin= 2996 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -20.7 165.3 0.000 -0.035 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.0873 2.71e-09\n", "V_corr= -353.50176\n", "ibin= 2997 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -24.1 165.3 -0.017 0.064 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0333 4.77e-09\n", "V_corr= -356.92241\n", "ibin= 2998 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -7.6 163.9 -0.057 0.062 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0821 5.12e-09\n", "V_corr= -340.45828\n", "ibin= 2999 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -17.9 157.1 0.020 0.055 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00892 4.99e-09\n", "V_corr= -350.70263\n", "ibin= 3000 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -16.2 157.4 0.025 0.078 0.000 0.000 0.769 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 0.0474 3.38e-09\n", "V_corr= -349.04198\n", "ibin= 3001 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -13.1 162.2 -0.029 0.061 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 6.60e+03 0.206 2.64e-09\n", "V_corr= -345.90184\n", "ibin= 3002 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -8.8 176.6 -0.070 -0.044 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0658 5.25e-09\n", "V_corr= -341.62909\n", "ibin= 3003 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 0.2 166.6 -0.065 0.040 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 9.29e+03 0.119 3.20e-09\n", "V_corr= -332.63270\n", "ibin= 3004 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 9.9 156.2 -0.010 0.114 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 0.0514 4.28e-09\n", "V_corr= -322.88624\n", "ibin= 3005 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 2.2 178.8 -0.024 0.082 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.103 4.51e-09\n", "V_corr= -330.65441\n", "ibin= 3006 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 11.2 182.2 0.008 0.115 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 0.289 4.38e-09\n", "V_corr= -321.56280\n", "ibin= 3007 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 5.4 194.6 -0.026 0.042 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 0.252 2.99e-09\n", "V_corr= -327.36521\n", "ibin= 3008 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 25.3 172.1 -0.013 -0.001 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 0.445 7.08e-10\n", "V_corr= -307.48470\n", "ibin= 3009 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 25.6 174.8 -0.023 0.047 0.000 0.000 0.696 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0505 3.02e-09\n", "V_corr= -307.16266\n", "ibin= 3010 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 30.3 172.8 -0.010 0.074 0.000 0.000 0.552 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0391 2.63e-09\n", "V_corr= -302.51959\n", "ibin= 3011 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 224 32.4 178.5 -0.019 0.104 0.000 0.000 0.715 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.549 4.22e-09\n", "V_corr= -300.37593\n", "ibin= 3012 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 65.7 158.6 -0.063 0.074 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0169 2.15e-09\n", "V_corr= -267.09512\n", "ibin= 3013 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 56.0 133.1 -0.052 0.040 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.343 1.56e-09\n", "V_corr= -276.79232\n", "ibin= 3014 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 50.2 145.6 0.041 0.087 0.000 0.000 0.369 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.236 1.59e-09\n", "V_corr= -282.61209\n", "ibin= 3015 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 60.7 178.3 -0.052 0.049 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 0.0213 1.23e-09\n", "V_corr= -272.10429\n", "ibin= 3016 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 62.9 180.4 -0.072 -0.009 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 0.153 1.24e-09\n", "V_corr= -269.86932\n", "ibin= 3017 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 407 56.9 136.4 0.008 0.077 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.425 2.60e-10\n", "V_corr= -275.93868\n", "ibin= 3018 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 76.8 184.7 -0.010 0.023 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+03 0.365 2.37e-10\n", "V_corr= -256.00069\n", "ibin= 3019 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 49.7 137.4 0.029 0.047 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.387 8.75e-10\n", "V_corr= -283.15049\n", "ibin= 3020 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 79.9 134.6 0.050 0.052 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.170 1.09e-09\n", "V_corr= -252.93995\n", "ibin= 3021 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 83.3 167.6 0.036 0.079 0.000 0.000 0.627 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.05e+03 0.673 1.28e-10\n", "V_corr= -249.55719\n", "ibin= 3022 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 86.5 148.5 -0.028 -0.044 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.123 1.08e-09\n", "V_corr= -246.33114\n", "ibin= 3023 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 43.1 191.3 -0.037 0.018 0.000 0.000 0.295 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 0.479 2.85e-10\n", "V_corr= -289.68941\n", "ibin= 3024 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 40.9 225.4 -0.086 0.082 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.317 1.11e-09\n", "V_corr= -291.93975\n", "ibin= 3025 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 58.0 172.5 -0.028 -0.005 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.76e+04 -0.295 5.55e-10\n", "V_corr= -274.83292\n", "ibin= 3026 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 88.3 193.3 0.060 0.025 0.000 0.000 0.274 NaN\n", "Ages, Metallicities, Weights:\n", " 2.78e+03 0.579 2.09e-10\n", "V_corr= -244.46884\n", "ibin= 3027 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 72.6 117.8 -0.011 -0.047 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 2.71e+03 -0.153 1.10e-10\n", "V_corr= -260.24812\n", "ibin= 3028 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 85.7 144.3 -0.019 -0.036 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 2.46e+03 -0.160 1.02e-10\n", "V_corr= -247.15331\n", "ibin= 3029 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 83.7 133.9 -0.012 0.005 0.000 0.000 0.320 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+03 -0.0237 4.55e-11\n", "V_corr= -249.10367\n", "ibin= 3030 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 98.1 142.9 -0.002 -0.020 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 4.50e-10\n", "V_corr= -234.72426\n", "ibin= 3031 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 272 77.7 184.3 -0.043 0.058 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 8.41e+03 0.204 2.96e-10\n", "V_corr= -255.12048\n", "ibin= 3032 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 155.1 156.3 0.052 -0.009 0.000 0.000 0.458 NaN\n", "Ages, Metallicities, Weights:\n", " 3.67e+03 -0.0781 1.05e-10\n", "V_corr= -177.75139\n", "ibin= 3033 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 72.3 144.3 -0.033 0.009 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 890. 0.665 4.32e-11\n", "V_corr= -260.53677\n", "ibin= 3034 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 93.9 175.6 -0.004 0.008 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 -0.230 3.17e-10\n", "V_corr= -238.91831\n", "ibin= 3035 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 294 119.8 25.8 0.001 0.000 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.626 3.15e-10\n", "V_corr= -212.97932\n", "ibin= 3036 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3037 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3038 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -34.2 136.2 -0.041 0.043 0.000 0.000 1.336 NaN\n", "Ages, Metallicities, Weights:\n", " 9.17e+03 -0.206 3.96e-10\n", "V_corr= -367.01500\n", "ibin= 3039 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -51.3 114.1 0.036 0.010 0.000 0.000 0.872 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.548 6.06e-10\n", "V_corr= -384.14402\n", "ibin= 3040 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 213 -36.2 168.3 0.041 0.065 0.000 0.000 0.792 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+03 0.495 1.27e-10\n", "V_corr= -368.96522\n", "ibin= 3041 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -51.8 124.8 -0.035 -0.006 0.000 0.000 1.830 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.512 6.99e-10\n", "V_corr= -384.65357\n", "ibin= 3042 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -30.6 73.0 -0.030 0.011 0.000 0.000 1.903 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.373 8.25e-10\n", "V_corr= -363.43660\n", "ibin= 3043 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -28.8 112.6 -0.029 -0.013 0.000 0.000 0.918 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 -0.339 5.27e-10\n", "V_corr= -361.58718\n", "ibin= 3044 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -38.6 129.3 -0.026 0.017 0.000 0.000 1.129 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.212 1.03e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -371.40175\n", "ibin= 3045 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 -31.3 118.1 0.022 0.067 0.000 0.000 1.669 NaN\n", "Ages, Metallicities, Weights:\n", " 2.53e+03 -0.0307 2.02e-10\n", "V_corr= -364.06149\n", "ibin= 3046 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -35.0 114.1 -0.127 0.007 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -0.197 7.27e-10\n", "V_corr= -367.81109\n", "ibin= 3047 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -23.6 125.3 0.002 0.031 0.000 0.000 1.049 NaN\n", "Ages, Metallicities, Weights:\n", " 4.71e+03 0.00739 4.20e-10\n", "V_corr= -356.36258\n", "ibin= 3048 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -45.6 134.3 -0.053 0.040 0.000 0.000 0.794 NaN\n", "Ages, Metallicities, Weights:\n", " 2.94e+03 0.211 3.20e-10\n", "V_corr= -378.39237\n", "ibin= 3049 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -30.5 158.0 -0.023 0.039 0.000 0.000 1.089 NaN\n", "Ages, Metallicities, Weights:\n", " 9.60e+03 0.0171 8.77e-10\n", "V_corr= -363.35862\n", "ibin= 3050 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -44.3 143.2 -0.039 0.076 0.000 0.000 0.721 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.155 1.39e-09\n", "V_corr= -377.06954\n", "ibin= 3051 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -57.9 136.5 0.012 -0.014 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 3.51e+03 -0.109 3.74e-10\n", "V_corr= -390.72146\n", "ibin= 3052 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -35.5 167.8 0.006 0.029 0.000 0.000 0.798 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0271 1.75e-09\n", "V_corr= -368.29336\n", "ibin= 3053 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -39.9 184.8 -0.013 -0.001 0.000 0.000 0.859 NaN\n", "Ages, Metallicities, Weights:\n", " 4.18e+03 0.397 6.99e-10\n", "V_corr= -372.73872\n", "ibin= 3054 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 190 -44.4 163.3 0.041 0.061 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 0.440 3.91e-10\n", "V_corr= -377.24412\n", "ibin= 3055 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -51.2 137.3 -0.009 0.079 0.000 0.000 0.729 NaN\n", "Ages, Metallicities, Weights:\n", " 8.14e+03 -0.000719 1.05e-09\n", "V_corr= -384.03693\n", "ibin= 3056 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -38.5 170.8 0.047 0.038 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 4.71e+03 0.210 8.19e-10\n", "V_corr= -371.26377\n", "ibin= 3057 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -23.9 157.7 -0.006 0.009 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 9.02e+03 -0.00691 1.37e-09\n", "V_corr= -356.75195\n", "ibin= 3058 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -27.3 173.3 0.030 0.020 0.000 0.000 0.823 NaN\n", "Ages, Metallicities, Weights:\n", " 8.60e+03 0.181 1.70e-09\n", "V_corr= -360.06310\n", "ibin= 3059 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -28.6 167.3 -0.036 0.012 0.000 0.000 0.666 NaN\n", "Ages, Metallicities, Weights:\n", " 2.64e+03 0.480 7.37e-10\n", "V_corr= -361.39591\n", "ibin= 3060 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -19.0 161.8 0.034 0.045 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 4.94e+03 0.228 1.12e-09\n", "V_corr= -351.85614\n", "ibin= 3061 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -22.0 146.7 -0.028 0.065 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.0944 2.47e-09\n", "V_corr= -354.78817\n", "ibin= 3062 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -37.9 171.0 -0.038 0.019 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 8.45e+03 0.492 2.39e-09\n", "V_corr= -370.73318\n", "ibin= 3063 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -14.0 133.5 0.010 0.005 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 7.27e+03 -0.0435 1.61e-09\n", "V_corr= -346.81228\n", "ibin= 3064 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 -22.4 164.2 -0.053 0.010 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 0.00620 2.73e-09\n", "V_corr= -355.20892\n", "ibin= 3065 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -11.5 149.9 -0.077 0.090 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0355 3.89e-09\n", "V_corr= -344.32915\n", "ibin= 3066 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -26.7 177.1 0.020 0.013 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0112 4.35e-09\n", "V_corr= -359.48170\n", "ibin= 3067 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -10.8 156.2 -0.019 0.101 0.000 0.000 0.782 NaN\n", "Ages, Metallicities, Weights:\n", " 8.08e+03 0.128 2.44e-09\n", "V_corr= -343.57428\n", "ibin= 3068 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -21.0 175.8 0.026 0.072 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 9.00e+03 0.212 3.04e-09\n", "V_corr= -353.82481\n", "ibin= 3069 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -4.4 166.1 -0.019 0.061 0.000 0.000 0.664 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 0.146 4.31e-09\n", "V_corr= -337.19255\n", "ibin= 3070 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -6.1 177.7 -0.008 -0.004 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 4.08e+03 0.419 1.75e-09\n", "V_corr= -338.91669\n", "ibin= 3071 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -18.1 187.8 -0.052 0.023 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 3.55e+03 0.454 1.55e-09\n", "V_corr= -350.90477\n", "ibin= 3072 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -5.3 178.5 -0.032 0.024 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0209 4.41e-09\n", "V_corr= -338.12660\n", "ibin= 3073 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 9.0 168.3 -0.080 0.083 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.200 3.91e-09\n", "V_corr= -323.76292\n", "ibin= 3074 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 12.6 167.1 -0.073 0.065 0.000 0.000 0.829 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0155 3.78e-09\n", "V_corr= -320.25692\n", "ibin= 3075 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 21.0 164.6 -0.029 0.085 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 2.96e-09\n", "V_corr= -311.83800\n", "ibin= 3076 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 5.4 181.6 -0.018 0.029 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0137 3.27e-09\n", "V_corr= -327.40934\n", "ibin= 3077 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 17.1 169.6 0.059 0.017 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 9.51e+03 0.151 2.00e-09\n", "V_corr= -315.69825\n", "ibin= 3078 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 36.9 177.9 0.020 0.040 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+04 0.120 2.81e-09\n", "V_corr= -295.90871\n", "ibin= 3079 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 69 39.9 156.4 0.071 0.057 0.000 0.000 0.623 NaN\n", "Ages, Metallicities, Weights:\n", " 9.58e+03 0.107 1.56e-09\n", "V_corr= -292.92625\n", "ibin= 3080 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 43.1 174.5 -0.013 0.083 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0276 2.29e-09\n", "V_corr= -289.69160\n", "ibin= 3081 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 49.1 201.4 0.034 0.089 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.169 2.28e-09\n", "V_corr= -283.72092\n", "ibin= 3082 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 49.2 164.6 -0.043 0.087 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 8.09e+03 0.293 1.22e-09\n", "V_corr= -283.59958\n", "ibin= 3083 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 63.9 135.1 -0.063 0.048 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.398 1.35e-09\n", "V_corr= -268.94068\n", "ibin= 3084 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 39.1 173.6 -0.021 0.014 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+03 0.505 3.07e-10\n", "V_corr= -293.73595\n", "ibin= 3085 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 68.2 160.5 -0.078 0.018 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00738 1.57e-09\n", "V_corr= -264.56191\n", "ibin= 3086 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 87.7 147.4 -0.026 0.037 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.361 1.14e-09\n", "V_corr= -245.11764\n", "ibin= 3087 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 52.7 146.4 -0.037 0.075 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 1.16e-09\n", "V_corr= -280.14252\n", "ibin= 3088 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 71.5 141.5 0.024 0.023 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 5.45e+03 -0.149 4.08e-10\n", "V_corr= -261.29413\n", "ibin= 3089 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 56.8 186.0 -0.070 0.079 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.228 1.26e-09\n", "V_corr= -276.03777\n", "ibin= 3090 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 48.9 197.9 -0.086 0.097 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.310 1.28e-09\n", "V_corr= -283.94289\n", "ibin= 3091 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 219 45.9 126.2 0.008 0.047 0.000 0.000 0.646 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 5.44e+03 -0.103 3.20e-10\n", "V_corr= -286.95547\n", "ibin= 3092 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 7.1 222.8 -0.118 0.038 0.000 0.000 0.666 NaN\n", "Ages, Metallicities, Weights:\n", " 3.83e+03 0.542 3.78e-10\n", "V_corr= -325.71343\n", "ibin= 3093 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 61 80.3 146.0 -0.049 0.008 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 2.82e+03 0.0795 1.62e-10\n", "V_corr= -252.48513\n", "ibin= 3094 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 90.3 94.9 0.016 0.032 0.000 0.000 0.372 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.365 5.82e-10\n", "V_corr= -242.46983\n", "ibin= 3095 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 65.5 146.7 -0.033 0.042 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 -0.133 1.77e-10\n", "V_corr= -267.27819\n", "ibin= 3096 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 73.5 180.4 -0.057 0.082 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0854 6.09e-10\n", "V_corr= -259.31120\n", "ibin= 3097 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 100.5 128.9 0.022 0.024 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 4.86e+03 -0.206 1.77e-10\n", "V_corr= -232.27073\n", "ibin= 3098 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 112.5 80.9 -0.022 0.007 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+03 -0.0571 5.72e-11\n", "V_corr= -220.26626\n", "ibin= 3099 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 102.8 123.6 0.019 0.020 0.000 0.000 0.329 NaN\n", "Ages, Metallicities, Weights:\n", " 2.12e+03 -0.0951 6.98e-11\n", "V_corr= -230.01766\n", "ibin= 3100 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 84.9 110.3 -0.014 0.021 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 4.84e+03 -0.230 1.33e-10\n", "V_corr= -247.86631\n", "ibin= 3101 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 129.7 222.6 0.033 0.010 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.260 5.35e-10\n", "V_corr= -203.08300\n", "ibin= 3102 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 83.6 126.9 -0.032 -0.008 0.000 0.000 0.305 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.634 2.59e-10\n", "V_corr= -249.24427\n", "ibin= 3103 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 62.0 171.7 0.001 0.034 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.120 3.72e-10\n", "V_corr= -270.78952\n", "ibin= 3104 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 129.6 155.2 0.010 0.044 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 2.70e-10\n", "V_corr= -203.22533\n", "ibin= 3105 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3106 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3107 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -48.0 98.2 0.024 -0.023 0.000 0.000 1.980 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -0.312 4.72e-10\n", "V_corr= -380.84459\n", "ibin= 3108 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -38.8 142.5 0.057 0.018 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.252 8.03e-10\n", "V_corr= -371.63354\n", "ibin= 3109 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -55.3 98.4 0.014 0.009 0.000 0.000 1.351 NaN\n", "Ages, Metallicities, Weights:\n", " 4.15e+03 -0.292 2.29e-10\n", "V_corr= -388.06126\n", "ibin= 3110 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -55.1 94.3 -0.037 0.036 0.000 0.000 0.814 NaN\n", "Ages, Metallicities, Weights:\n", " 1.53e+04 -0.620 5.17e-10\n", "V_corr= -387.89699\n", "ibin= 3111 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -61.0 154.3 0.023 0.065 0.000 0.000 0.677 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+03 0.575 1.08e-10\n", "V_corr= -393.78195\n", "ibin= 3112 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -50.7 133.2 -0.033 0.037 0.000 0.000 1.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+03 0.666 1.68e-10\n", "V_corr= -383.46338\n", "ibin= 3113 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -31.4 151.0 0.007 0.033 0.000 0.000 2.017 NaN\n", "Ages, Metallicities, Weights:\n", " 2.18e+03 0.0596 1.81e-10\n", "V_corr= -364.22774\n", "ibin= 3114 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -36.8 144.5 -0.006 0.064 0.000 0.000 0.954 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+04 -0.116 6.50e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -369.61148\n", "ibin= 3115 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -43.6 134.6 0.017 0.066 0.000 0.000 0.915 NaN\n", "Ages, Metallicities, Weights:\n", " 4.28e+03 0.119 3.83e-10\n", "V_corr= -376.41263\n", "ibin= 3116 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -40.3 132.8 0.028 0.054 0.000 0.000 0.991 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.137 7.73e-10\n", "V_corr= -373.14674\n", "ibin= 3117 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -50.9 173.7 0.010 0.090 0.000 0.000 0.740 NaN\n", "Ages, Metallicities, Weights:\n", " 3.56e+03 0.240 3.77e-10\n", "V_corr= -383.68071\n", "ibin= 3118 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -34.6 118.2 0.001 0.045 0.000 0.000 1.052 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 1.27e-09\n", "V_corr= -367.43312\n", "ibin= 3119 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -44.5 194.8 -0.017 -0.011 0.000 0.000 0.882 NaN\n", "Ages, Metallicities, Weights:\n", " 3.14e+03 0.401 4.48e-10\n", "V_corr= -377.28283\n", "ibin= 3120 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 -20.6 129.7 -0.051 -0.009 0.000 0.000 0.854 NaN\n", "Ages, Metallicities, Weights:\n", " 4.97e+03 -0.105 5.14e-10\n", "V_corr= -353.36596\n", "ibin= 3121 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -46.4 173.9 0.045 0.076 0.000 0.000 0.888 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0713 1.79e-09\n", "V_corr= -379.19207\n", "ibin= 3122 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -25.5 145.6 -0.011 0.022 0.000 0.000 0.686 NaN\n", "Ages, Metallicities, Weights:\n", " 7.54e+03 0.0377 9.05e-10\n", "V_corr= -358.35800\n", "ibin= 3123 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -53.2 141.9 0.015 0.011 0.000 0.000 1.611 NaN\n", "Ages, Metallicities, Weights:\n", " 8.72e+03 -0.0643 9.80e-10\n", "V_corr= -385.98703\n", "ibin= 3124 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 -36.1 165.5 0.039 0.083 0.000 0.000 0.721 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 0.243 2.36e-09\n", "V_corr= -368.87776\n", "ibin= 3125 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -52.8 164.3 -0.030 0.044 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 5.08e+03 0.261 8.75e-10\n", "V_corr= -385.63480\n", "ibin= 3126 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -38.7 156.0 -0.066 0.029 0.000 0.000 0.808 NaN\n", "Ages, Metallicities, Weights:\n", " 2.36e+03 0.428 5.24e-10\n", "V_corr= -371.47201\n", "ibin= 3127 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -47.1 159.6 -0.006 0.050 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0882 2.38e-09\n", "V_corr= -379.92049\n", "ibin= 3128 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -41.3 161.9 -0.013 -0.055 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 4.23e+03 0.110 8.37e-10\n", "V_corr= -374.10574\n", "ibin= 3129 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -25.3 167.3 -0.019 0.031 0.000 0.000 0.615 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.102 3.07e-09\n", "V_corr= -358.11723\n", "ibin= 3130 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -18.1 165.6 -0.004 -0.009 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.191 2.68e-09\n", "V_corr= -350.94362\n", "ibin= 3131 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -22.9 135.9 -0.076 0.101 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.40e+04 -0.141 2.03e-09\n", "V_corr= -355.71929\n", "ibin= 3132 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -29.3 149.3 0.004 0.026 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 9.05e+03 0.0178 1.88e-09\n", "V_corr= -362.10984\n", "ibin= 3133 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -19.3 148.0 -0.002 0.040 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0994 3.37e-09\n", "V_corr= -352.15851\n", "ibin= 3134 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -28.6 148.8 0.021 0.026 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 -0.0375 2.51e-09\n", "V_corr= -361.41429\n", "ibin= 3135 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -34.3 180.5 -0.007 0.044 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.136 4.19e-09\n", "V_corr= -367.09478\n", "ibin= 3136 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -38.9 171.5 0.026 0.073 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 9.62e+03 0.224 2.77e-09\n", "V_corr= -371.71202\n", "ibin= 3137 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -17.4 163.5 -0.066 0.024 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 6.45e+03 0.216 2.06e-09\n", "V_corr= -350.16121\n", "ibin= 3138 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -18.5 154.6 0.012 0.023 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.141 3.85e-09\n", "V_corr= -351.27100\n", "ibin= 3139 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -13.3 176.6 -0.030 0.041 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 0.0616 3.07e-09\n", "V_corr= -346.15102\n", "ibin= 3140 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -9.9 151.6 -0.024 -0.007 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+04 -0.138 2.77e-09\n", "V_corr= -342.66794\n", "ibin= 3141 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -11.4 179.8 -0.064 0.105 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.533 6.42e-09\n", "V_corr= -344.24110\n", "ibin= 3142 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 5.1 183.2 -0.046 0.075 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.183 4.00e-09\n", "V_corr= -327.71930\n", "ibin= 3143 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 12.4 175.1 -0.055 0.097 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.222 3.80e-09\n", "V_corr= -320.45069\n", "ibin= 3144 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 13.2 174.5 -0.063 0.050 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0210 3.19e-09\n", "V_corr= -319.57440\n", "ibin= 3145 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 23.2 172.8 0.007 0.066 0.000 0.000 0.688 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 0.126 2.37e-09\n", "V_corr= -309.65080\n", "ibin= 3146 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 17.3 189.1 -0.053 0.058 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0786 2.80e-09\n", "V_corr= -315.47626\n", "ibin= 3147 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 24.3 173.3 0.020 0.081 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0466 2.31e-09\n", "V_corr= -308.54160\n", "ibin= 3148 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 15.1 162.3 0.006 0.019 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 2.06e-09\n", "V_corr= -317.68351\n", "ibin= 3149 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 34.5 134.5 0.038 0.102 0.000 0.000 0.342 NaN\n", "Ages, Metallicities, Weights:\n", " 3.31e+03 0.104 4.80e-10\n", "V_corr= -298.34431\n", "ibin= 3150 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 33.9 153.0 -0.028 0.068 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 8.79e+03 0.172 1.26e-09\n", "V_corr= -298.86273\n", "ibin= 3151 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 64.5 133.7 0.108 0.070 0.000 0.000 0.353 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.0720 1.12e-09\n", "V_corr= -268.30182\n", "ibin= 3152 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 39.2 163.2 0.018 0.042 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 1.52e-09\n", "V_corr= -293.58761\n", "ibin= 3153 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 55.5 148.2 -0.009 0.076 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.129 1.43e-09\n", "V_corr= -277.30704\n", "ibin= 3154 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 67.2 145.9 0.039 0.008 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.297 1.19e-09\n", "V_corr= -265.58880\n", "ibin= 3155 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 57.7 184.1 -0.073 0.040 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0126 1.35e-09\n", "V_corr= -275.14442\n", "ibin= 3156 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 75.3 117.8 0.027 0.034 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 1.11e-09\n", "V_corr= -257.54110\n", "ibin= 3157 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 38.3 165.6 -0.036 0.131 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 0.539 2.34e-10\n", "V_corr= -294.54549\n", "ibin= 3158 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 65.1 172.2 0.003 0.075 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0145 1.08e-09\n", "V_corr= -267.74601\n", "ibin= 3159 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 80.2 153.8 0.021 -0.016 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.123 9.61e-10\n", "V_corr= -252.64168\n", "ibin= 3160 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 76.4 131.3 -0.000 0.003 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.275 7.00e-10\n", "V_corr= -256.40388\n", "ibin= 3161 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 109.3 208.1 -0.047 0.008 0.000 0.000 0.441 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 2.02e-09\n", "V_corr= -223.54896\n", "ibin= 3162 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 78.5 123.3 -0.005 0.032 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+03 0.0795 1.05e-10\n", "V_corr= -254.27767\n", "ibin= 3163 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 62.5 141.9 -0.038 0.003 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.285 4.85e-10\n", "V_corr= -270.34543\n", "ibin= 3164 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 96.5 236.7 0.008 0.078 0.000 0.000 0.353 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.429 9.75e-10\n", "V_corr= -236.33821\n", "ibin= 3165 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 111.1 114.2 -0.002 0.001 0.000 0.000 0.565 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.382 4.78e-10\n", "V_corr= -221.70441\n", "ibin= 3166 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 142 79.5 131.6 -0.006 0.018 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 4.28e+03 0.0586 1.74e-10\n", "V_corr= -253.28217\n", "ibin= 3167 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 82.5 200.3 0.004 -0.022 0.000 0.000 0.291 NaN\n", "Ages, Metallicities, Weights:\n", " 2.81e+03 0.580 1.81e-10\n", "V_corr= -250.35283\n", "ibin= 3168 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 86.7 164.2 0.018 0.031 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.356 3.77e-10\n", "V_corr= -246.08853\n", "ibin= 3169 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 102.9 128.6 -0.016 0.024 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.101 4.27e-10\n", "V_corr= -229.88109\n", "ibin= 3170 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 75.5 95.4 0.008 0.012 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 915. 0.161 2.70e-11\n", "V_corr= -257.29995\n", "ibin= 3171 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -37.0 285.7 -0.104 0.029 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.593 1.16e-10\n", "V_corr= -369.78084\n", "ibin= 3172 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 107.9 167.3 0.013 -0.008 0.000 0.000 0.342 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 2.83e-10\n", "V_corr= -224.86599\n", "ibin= 3173 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 63.5 122.9 0.032 -0.012 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 605. 0.348 1.48e-11\n", "V_corr= -269.33174\n", "ibin= 3174 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3175 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3176 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -44.8 169.9 0.031 0.077 0.000 0.000 1.473 NaN\n", "Ages, Metallicities, Weights:\n", " 6.80e+03 0.195 4.54e-10\n", "V_corr= -377.58021\n", "ibin= 3177 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -46.7 161.4 0.069 -0.085 0.000 0.000 1.299 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.495 6.98e-10\n", "V_corr= -379.51198\n", "ibin= 3178 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -31.6 84.9 -0.041 -0.004 0.000 0.000 0.766 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.426 7.43e-10\n", "V_corr= -364.43283\n", "ibin= 3179 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -46.0 113.1 0.017 0.040 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 3.12e+03 -0.110 2.00e-10\n", "V_corr= -378.80879\n", "ibin= 3180 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 -10.6 129.6 0.006 -0.008 0.000 0.000 1.855 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.394 8.23e-10\n", "V_corr= -343.39948\n", "ibin= 3181 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -42.2 115.5 -0.047 0.035 0.000 0.000 0.908 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+03 -0.0237 9.50e-11\n", "V_corr= -374.97601\n", "ibin= 3182 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 154 -62.8 142.2 0.001 0.054 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+03 0.689 1.47e-10\n", "V_corr= -395.63045\n", "ibin= 3183 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 -52.3 168.5 -0.008 0.040 0.000 0.000 1.090 NaN\n", "Ages, Metallicities, Weights:\n", " 3.20e+03 0.248 3.09e-10\n", "V_corr= -385.09442\n", "ibin= 3184 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -31.7 142.1 -0.029 0.026 0.000 0.000 0.876 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 -0.204 1.00e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -364.46966\n", "ibin= 3185 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -31.1 122.4 -0.021 0.077 0.000 0.000 0.964 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -0.235 7.22e-10\n", "V_corr= -363.95380\n", "ibin= 3186 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -33.0 183.7 0.030 -0.025 0.000 0.000 0.858 NaN\n", "Ages, Metallicities, Weights:\n", " 2.53e+03 0.221 2.86e-10\n", "V_corr= -365.84627\n", "ibin= 3187 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -6.1 151.0 0.040 0.062 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.109 1.35e-09\n", "V_corr= -338.93344\n", "ibin= 3188 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -31.2 131.9 -0.034 0.072 0.000 0.000 0.748 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.118 1.40e-09\n", "V_corr= -364.03869\n", "ibin= 3189 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -40.8 163.3 0.031 -0.030 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.0648 1.39e-09\n", "V_corr= -373.65604\n", "ibin= 3190 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -25.4 151.3 0.017 0.027 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0459 1.69e-09\n", "V_corr= -358.20881\n", "ibin= 3191 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -40.0 165.5 0.062 0.007 0.000 0.000 0.703 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+03 0.484 2.79e-10\n", "V_corr= -372.77405\n", "ibin= 3192 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -44.9 152.5 -0.007 0.063 0.000 0.000 0.900 NaN\n", "Ages, Metallicities, Weights:\n", " 7.90e+03 -0.0246 9.00e-10\n", "V_corr= -377.71481\n", "ibin= 3193 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -29.9 148.3 -0.011 0.007 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+04 -0.189 1.28e-09\n", "V_corr= -362.72552\n", "ibin= 3194 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -14.1 144.3 -0.084 0.001 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+04 -0.111 1.19e-09\n", "V_corr= -346.91078\n", "ibin= 3195 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 -19.4 132.3 -0.038 0.059 0.000 0.000 0.627 NaN\n", "Ages, Metallicities, Weights:\n", " 8.17e+03 -0.0733 1.05e-09\n", "V_corr= -352.17481\n", "ibin= 3196 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -37.5 162.5 0.001 0.007 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 2.31e-09\n", "V_corr= -370.33998\n", "ibin= 3197 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -33.6 163.4 -0.031 -0.034 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 3.94e+03 0.0998 7.43e-10\n", "V_corr= -366.43429\n", "ibin= 3198 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -23.4 153.6 0.060 0.055 0.000 0.000 0.359 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 0.0452 1.88e-09\n", "V_corr= -356.17294\n", "ibin= 3199 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -31.7 174.4 0.015 0.033 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 5.55e+03 0.116 1.14e-09\n", "V_corr= -364.47759\n", "ibin= 3200 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -12.6 158.8 -0.004 0.077 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00845 2.95e-09\n", "V_corr= -345.39954\n", "ibin= 3201 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -26.9 158.9 -0.006 -0.075 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.118 2.35e-09\n", "V_corr= -359.67265\n", "ibin= 3202 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -24.4 168.0 -0.050 0.004 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0990 3.16e-09\n", "V_corr= -357.21512\n", "ibin= 3203 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 -17.3 157.9 -0.040 -0.005 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 7.20e+03 0.0315 1.69e-09\n", "V_corr= -350.12391\n", "ibin= 3204 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -29.2 164.6 0.029 0.057 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0133 3.54e-09\n", "V_corr= -361.97637\n", "ibin= 3205 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -25.9 144.9 -0.008 0.038 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 8.29e+03 0.0750 2.05e-09\n", "V_corr= -358.71689\n", "ibin= 3206 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -16.8 154.0 -0.018 0.035 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 5.98e+03 0.0752 1.52e-09\n", "V_corr= -349.60183\n", "ibin= 3207 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 5.1 168.3 -0.098 0.070 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0347 3.70e-09\n", "V_corr= -327.69331\n", "ibin= 3208 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -8.3 174.9 -0.028 0.055 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0500 3.80e-09\n", "V_corr= -341.13151\n", "ibin= 3209 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -19.0 188.8 -0.069 0.085 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.293 4.25e-09\n", "V_corr= -351.81705\n", "ibin= 3210 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 224 -9.6 209.0 -0.016 0.037 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 0.465 4.28e-09\n", "V_corr= -342.44491\n", "ibin= 3211 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 8.8 188.2 -0.016 0.018 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 9.60e+03 0.105 2.15e-09\n", "V_corr= -324.05254\n", "ibin= 3212 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 17.9 156.1 -0.019 0.082 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 8.16e+03 0.136 1.77e-09\n", "V_corr= -314.93794\n", "ibin= 3213 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 28.0 140.9 -0.026 0.076 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 5.79e+03 -0.0477 1.02e-09\n", "V_corr= -304.78166\n", "ibin= 3214 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 30.6 166.0 -0.027 0.057 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0245 2.71e-09\n", "V_corr= -302.17988\n", "ibin= 3215 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 17.5 158.0 -0.009 0.087 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0405 2.36e-09\n", "V_corr= -315.27959\n", "ibin= 3216 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 53.4 149.3 -0.036 0.064 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.218 1.92e-09\n", "V_corr= -279.38463\n", "ibin= 3217 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 26.2 169.1 -0.027 0.034 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.215 4.41e-10\n", "V_corr= -306.57538\n", "ibin= 3218 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 52.7 167.1 -0.058 0.083 0.000 0.000 0.339 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 0.252 1.89e-09\n", "V_corr= -280.10752\n", "ibin= 3219 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 35.3 150.4 0.061 0.011 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.165 1.36e-09\n", "V_corr= -297.51927\n", "ibin= 3220 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 38.1 143.3 0.026 0.076 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.161 1.41e-09\n", "V_corr= -294.73194\n", "ibin= 3221 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 63.5 155.0 -0.026 -0.035 0.000 0.000 0.945 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.304 1.07e-09\n", "V_corr= -269.33927\n", "ibin= 3222 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 46.5 149.5 0.044 0.070 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.000643 1.45e-09\n", "V_corr= -286.26941\n", "ibin= 3223 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 63.6 152.8 -0.110 -0.014 0.000 0.000 0.540 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.388 1.02e-09\n", "V_corr= -269.22991\n", "ibin= 3224 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 52.2 182.4 -0.062 0.101 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0232 1.23e-09\n", "V_corr= -280.61638\n", "ibin= 3225 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 40.8 187.8 -0.056 0.074 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+03 0.455 2.18e-10\n", "V_corr= -292.03371\n", "ibin= 3226 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 30.9 142.5 0.070 -0.026 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 2.29e+03 -0.00664 1.85e-10\n", "V_corr= -301.87839\n", "ibin= 3227 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 187 93.6 114.8 -0.034 0.010 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.533 5.94e-10\n", "V_corr= -239.16016\n", "ibin= 3228 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 54.8 157.6 0.070 0.096 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0533 8.57e-10\n", "V_corr= -277.99590\n", "ibin= 3229 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 79.8 150.5 0.048 0.033 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 6.52e-10\n", "V_corr= -253.03049\n", "ibin= 3230 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 63.5 168.7 -0.044 0.050 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 8.28e+03 0.176 4.86e-10\n", "V_corr= -269.27636\n", "ibin= 3231 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 235 57.1 128.6 0.072 0.083 0.000 0.000 0.453 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.156 6.20e-10\n", "V_corr= -275.68162\n", "ibin= 3232 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 94.9 171.9 -0.058 0.074 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0639 6.28e-10\n", "V_corr= -237.91675\n", "ibin= 3233 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 64.0 146.7 -0.023 -0.005 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 5.96e+03 -0.0595 2.42e-10\n", "V_corr= -268.77144\n", "ibin= 3234 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 89.2 126.0 -0.020 0.049 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.173 9.42e-11\n", "V_corr= -243.64630\n", "ibin= 3235 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 115.5 130.6 0.030 0.019 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.160 5.44e-10\n", "V_corr= -217.32702\n", "ibin= 3236 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 79.1 210.3 0.002 0.097 0.000 0.000 0.329 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.649 1.15e-09\n", "V_corr= -253.72025\n", "ibin= 3237 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 133.3 111.0 0.001 0.009 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.755 3.04e-10\n", "V_corr= -199.48161\n", "ibin= 3238 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 165.2 140.3 -0.016 -0.007 0.000 0.000 0.305 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.680 2.53e-10\n", "V_corr= -167.60365\n", "ibin= 3239 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 110.5 135.0 -0.002 0.035 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.382 3.13e-10\n", "V_corr= -222.30345\n", "ibin= 3240 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 63.5 116.3 -0.019 0.011 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.649 2.41e-10\n", "V_corr= -269.27728\n", "ibin= 3241 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 116.8 169.6 0.002 -0.016 0.000 0.000 0.337 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.153 3.19e-10\n", "V_corr= -216.00053\n", "ibin= 3242 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 120.4 189.8 0.017 -0.062 0.000 0.000 0.555 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.654 7.01e-10\n", "V_corr= -212.43017\n", "ibin= 3243 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3244 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3245 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -30.0 170.8 0.069 0.047 0.000 0.000 1.713 NaN\n", "Ages, Metallicities, Weights:\n", " 2.98e+03 0.129 1.97e-10\n", "V_corr= -362.79356\n", "ibin= 3246 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -26.9 115.1 -0.019 0.020 0.000 0.000 1.780 NaN\n", "Ages, Metallicities, Weights:\n", " 3.98e+03 -0.258 2.18e-10\n", "V_corr= -359.68905\n", "ibin= 3247 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -23.1 126.7 -0.005 0.048 0.000 0.000 0.603 NaN\n", "Ages, Metallicities, Weights:\n", " 3.56e+03 -0.240 2.03e-10\n", "V_corr= -355.89049\n", "ibin= 3248 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 284 -62.6 61.9 0.006 0.008 0.000 0.000 1.552 NaN\n", "Ages, Metallicities, Weights:\n", " 4.73e+03 -0.524 2.29e-10\n", "V_corr= -395.39679\n", "ibin= 3249 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -59.0 129.1 0.038 0.011 0.000 0.000 1.757 NaN\n", "Ages, Metallicities, Weights:\n", " 5.62e+03 -0.117 3.65e-10\n", "V_corr= -391.79177\n", "ibin= 3250 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -32.7 115.7 0.037 0.013 0.000 0.000 1.863 NaN\n", "Ages, Metallicities, Weights:\n", " 3.45e+03 -0.0618 2.50e-10\n", "V_corr= -365.52131\n", "ibin= 3251 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -59.9 125.2 -0.022 0.034 0.000 0.000 1.598 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.247 6.02e-10\n", "V_corr= -392.75397\n", "ibin= 3252 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -30.1 136.5 0.025 0.089 0.000 0.000 1.329 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.118 1.12e-09\n", "V_corr= -362.90504\n", "ibin= 3253 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -54.2 145.1 -0.060 0.004 0.000 0.000 1.060 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.226 1.12e-09\n", "V_corr= -387.00326\n", "ibin= 3254 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -23.1 155.8 0.022 -0.015 0.000 0.000 0.831 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.307 1.11e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -355.93798\n", "ibin= 3255 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -59.7 141.7 0.024 0.031 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.03e+04 0.0547 9.03e-10\n", "V_corr= -392.48264\n", "ibin= 3256 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -49.9 145.0 0.014 -0.019 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.351 1.17e-09\n", "V_corr= -382.73488\n", "ibin= 3257 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -28.6 143.5 -0.038 0.014 0.000 0.000 1.223 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.275 1.34e-09\n", "V_corr= -361.41230\n", "ibin= 3258 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -53.4 139.7 -0.010 0.009 0.000 0.000 1.212 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.247 1.37e-09\n", "V_corr= -386.17863\n", "ibin= 3259 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -28.3 167.2 -0.053 0.023 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 8.51e+03 0.0704 9.56e-10\n", "V_corr= -361.14426\n", "ibin= 3260 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -45.8 156.3 -0.006 0.027 0.000 0.000 0.880 NaN\n", "Ages, Metallicities, Weights:\n", " 1.92e+03 0.377 3.01e-10\n", "V_corr= -378.59333\n", "ibin= 3261 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -34.5 134.3 0.036 0.089 0.000 0.000 1.002 NaN\n", "Ages, Metallicities, Weights:\n", " 4.66e+03 0.154 6.05e-10\n", "V_corr= -367.32515\n", "ibin= 3262 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -38.7 160.3 0.076 0.061 0.000 0.000 1.030 NaN\n", "Ages, Metallicities, Weights:\n", " 5.35e+03 0.295 8.26e-10\n", "V_corr= -371.47007\n", "ibin= 3263 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -42.4 150.7 -0.123 0.053 0.000 0.000 0.691 NaN\n", "Ages, Metallicities, Weights:\n", " 3.45e+03 0.223 5.44e-10\n", "V_corr= -375.17908\n", "ibin= 3264 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -31.0 150.6 0.005 0.062 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 3.51e+03 0.355 6.47e-10\n", "V_corr= -363.77642\n", "ibin= 3265 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -49.9 203.5 -0.014 -0.025 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 7.34e+03 0.274 1.50e-09\n", "V_corr= -382.73406\n", "ibin= 3266 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -42.6 166.7 -0.031 0.023 0.000 0.000 0.852 NaN\n", "Ages, Metallicities, Weights:\n", " 4.98e+03 0.224 9.39e-10\n", "V_corr= -375.38979\n", "ibin= 3267 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -32.6 147.9 0.002 0.021 0.000 0.000 0.875 NaN\n", "Ages, Metallicities, Weights:\n", " 2.97e+03 0.272 6.24e-10\n", "V_corr= -365.40250\n", "ibin= 3268 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -47.3 138.8 0.067 0.037 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.237 2.18e-09\n", "V_corr= -380.06140\n", "ibin= 3269 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -40.9 134.9 0.034 0.056 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 9.90e+03 -0.116 1.43e-09\n", "V_corr= -373.72397\n", "ibin= 3270 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -22.3 142.3 -0.013 0.030 0.000 0.000 0.782 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+04 -0.0663 2.10e-09\n", "V_corr= -355.06526\n", "ibin= 3271 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -11.8 160.8 -0.033 0.020 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.126 2.84e-09\n", "V_corr= -344.60522\n", "ibin= 3272 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 -17.6 154.2 -0.023 0.063 0.000 0.000 0.679 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0179 3.22e-09\n", "V_corr= -350.37998\n", "ibin= 3273 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -23.0 131.7 0.026 0.050 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 -0.247 2.38e-09\n", "V_corr= -355.78204\n", "ibin= 3274 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -14.2 171.9 -0.042 0.036 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0960 3.51e-09\n", "V_corr= -346.96382\n", "ibin= 3275 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -27.9 153.5 0.022 0.017 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 8.08e+03 0.00750 1.71e-09\n", "V_corr= -360.66232\n", "ibin= 3276 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -17.2 148.6 -0.048 0.058 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.0915 2.91e-09\n", "V_corr= -350.01743\n", "ibin= 3277 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -18.5 200.2 -0.046 0.097 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.375 4.34e-09\n", "V_corr= -351.35477\n", "ibin= 3278 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -1.2 173.3 -0.059 0.065 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 0.108 2.53e-09\n", "V_corr= -334.02223\n", "ibin= 3279 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -1.0 179.1 0.045 0.041 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0875 3.30e-09\n", "V_corr= -333.79952\n", "ibin= 3280 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 211 -8.3 171.6 0.002 0.067 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0388 2.98e-09\n", "V_corr= -341.15317\n", "ibin= 3281 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 18.6 176.6 0.005 -0.002 0.000 0.000 0.580 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0170 2.79e-09\n", "V_corr= -314.25456\n", "ibin= 3282 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 21.0 184.7 -0.044 0.092 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.110 2.71e-09\n", "V_corr= -311.77932\n", "ibin= 3283 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 15.9 172.5 0.061 0.081 0.000 0.000 0.725 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00692 2.29e-09\n", "V_corr= -316.93191\n", "ibin= 3284 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 13.3 162.3 -0.109 0.017 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 2.36e+03 0.498 5.34e-10\n", "V_corr= -319.46377\n", "ibin= 3285 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 45.5 120.2 -0.056 0.016 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+03 0.0960 2.42e-10\n", "V_corr= -287.35504\n", "ibin= 3286 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 54.7 167.7 -0.017 0.070 0.000 0.000 0.260 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0770 1.80e-09\n", "V_corr= -278.09865\n", "ibin= 3287 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 28.0 145.5 0.060 0.086 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0534 1.71e-09\n", "V_corr= -304.78166\n", "ibin= 3288 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 30.6 155.4 -0.020 0.035 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 -0.163 1.14e-09\n", "V_corr= -302.25848\n", "ibin= 3289 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 75.6 142.6 -0.041 0.097 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0859 1.45e-09\n", "V_corr= -257.23146\n", "ibin= 3290 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 50.1 189.4 -0.052 0.033 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 0.181 1.66e-09\n", "V_corr= -282.74202\n", "ibin= 3291 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 37.9 142.2 0.033 0.055 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 6.51e+03 -0.0807 5.23e-10\n", "V_corr= -294.88951\n", "ibin= 3292 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 41.6 118.7 0.010 0.055 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.209 1.05e-09\n", "V_corr= -291.20562\n", "ibin= 3293 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 38.0 129.2 -0.002 -0.011 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.288 1.00e-09\n", "V_corr= -294.80761\n", "ibin= 3294 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 57.0 128.6 0.057 0.022 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.0872 1.04e-09\n", "V_corr= -275.85551\n", "ibin= 3295 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 63.2 106.3 0.016 0.046 0.000 0.000 0.584 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.335 7.87e-10\n", "V_corr= -269.60899\n", "ibin= 3296 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 41.5 201.8 -0.006 0.019 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+03 0.651 1.25e-10\n", "V_corr= -291.27403\n", "ibin= 3297 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 66.7 106.3 -0.006 0.022 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 6.33e+03 -0.110 3.23e-10\n", "V_corr= -266.13480\n", "ibin= 3298 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 77.9 128.6 0.064 0.030 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 -0.287 3.97e-10\n", "V_corr= -254.94367\n", "ibin= 3299 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 81.9 120.5 0.022 0.035 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.345 6.52e-10\n", "V_corr= -250.94094\n", "ibin= 3300 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 248 86.5 231.2 -0.018 0.069 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.490 1.12e-09\n", "V_corr= -246.26068\n", "ibin= 3301 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 109.3 176.0 0.090 0.041 0.000 0.000 0.421 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 3.95e+03 0.547 3.01e-10\n", "V_corr= -223.54082\n", "ibin= 3302 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 70.9 153.5 -0.041 -0.017 0.000 0.000 0.285 NaN\n", "Ages, Metallicities, Weights:\n", " 3.04e+03 -0.0600 1.33e-10\n", "V_corr= -261.93446\n", "ibin= 3303 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 100.2 137.7 -0.029 0.063 0.000 0.000 0.334 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0353 5.30e-10\n", "V_corr= -232.56968\n", "ibin= 3304 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 125.8 165.5 0.006 -0.031 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+03 0.492 6.98e-11\n", "V_corr= -206.98651\n", "ibin= 3305 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 74.3 147.0 -0.002 0.021 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 5.56e+03 -0.205 1.37e-10\n", "V_corr= -258.53711\n", "ibin= 3306 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 122.8 162.7 0.036 -0.028 0.000 0.000 0.616 NaN\n", "Ages, Metallicities, Weights:\n", " 2.59e+03 -0.178 7.01e-11\n", "V_corr= -210.05255\n", "ibin= 3307 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 142.8 134.6 -0.002 -0.009 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.400 3.08e-10\n", "V_corr= -190.03291\n", "ibin= 3308 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 103.1 167.5 -0.027 -0.026 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0293 4.20e-10\n", "V_corr= -229.71440\n", "ibin= 3309 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 81.7 186.8 -0.036 0.080 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.209 3.08e-10\n", "V_corr= -251.14102\n", "ibin= 3310 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 174.9 201.3 0.049 0.003 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.136 2.77e-10\n", "V_corr= -157.92501\n", "ibin= 3311 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 163.3 214.3 0.033 -0.006 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.271 2.30e-10\n", "V_corr= -169.53164\n", "ibin= 3312 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3313 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3314 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -46.1 165.2 0.022 0.016 0.000 0.000 0.929 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+03 0.427 1.70e-10\n", "V_corr= -378.94862\n", "ibin= 3315 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -37.0 116.5 -0.016 0.022 0.000 0.000 1.997 NaN\n", "Ages, Metallicities, Weights:\n", " 4.48e+03 -0.108 2.69e-10\n", "V_corr= -369.78416\n", "ibin= 3316 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -46.9 129.0 -0.022 -0.042 0.000 0.000 1.100 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.341 7.79e-10\n", "V_corr= -379.74376\n", "ibin= 3317 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -57.6 148.2 -0.060 0.063 0.000 0.000 1.199 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.211 8.98e-10\n", "V_corr= -390.42232\n", "ibin= 3318 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -34.5 109.2 0.016 0.036 0.000 0.000 1.070 NaN\n", "Ages, Metallicities, Weights:\n", " 4.09e+03 -0.263 2.49e-10\n", "V_corr= -367.27704\n", "ibin= 3319 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 -49.5 144.8 0.014 -0.038 0.000 0.000 1.269 NaN\n", "Ages, Metallicities, Weights:\n", " 3.21e+03 0.128 2.73e-10\n", "V_corr= -382.35491\n", "ibin= 3320 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -33.5 158.2 0.039 0.022 0.000 0.000 1.123 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 -0.160 9.66e-10\n", "V_corr= -366.31852\n", "ibin= 3321 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -59.6 140.6 0.001 -0.003 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 0.0369 1.90e-10\n", "V_corr= -392.42092\n", "ibin= 3322 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -40.9 131.9 -0.068 0.064 0.000 0.000 0.742 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.344 9.81e-10\n", "V_corr= -373.73677\n", "ibin= 3323 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -41.4 104.5 0.004 -0.001 0.000 0.000 1.134 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.537 8.83e-10\n", "V_corr= -374.18425\n", "ibin= 3324 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -44.5 146.4 -0.122 -0.003 0.000 0.000 0.629 NaN\n", "Ages, Metallicities, Weights:\n", " 3.31e+03 0.0708 3.26e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -377.26458\n", "ibin= 3325 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -37.9 139.2 0.005 0.076 0.000 0.000 1.169 NaN\n", "Ages, Metallicities, Weights:\n", " 7.35e+03 0.0326 6.70e-10\n", "V_corr= -370.75476\n", "ibin= 3326 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -34.8 136.6 -0.069 0.060 0.000 0.000 1.116 NaN\n", "Ages, Metallicities, Weights:\n", " 8.69e+03 0.147 9.14e-10\n", "V_corr= -367.60961\n", "ibin= 3327 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -37.1 158.7 0.161 -0.003 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 3.99e+03 0.120 4.50e-10\n", "V_corr= -369.91998\n", "ibin= 3328 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -47.9 179.5 -0.060 0.019 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 8.81e+03 0.0487 9.46e-10\n", "V_corr= -380.72092\n", "ibin= 3329 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -34.1 168.4 -0.027 0.057 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 8.75e+03 0.0717 9.62e-10\n", "V_corr= -366.92630\n", "ibin= 3330 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 120 -30.8 131.0 -0.073 0.051 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 4.31e+03 0.0679 5.16e-10\n", "V_corr= -363.61385\n", "ibin= 3331 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -28.4 143.1 -0.027 0.045 0.000 0.000 0.971 NaN\n", "Ages, Metallicities, Weights:\n", " 7.05e+03 0.0525 8.83e-10\n", "V_corr= -361.18269\n", "ibin= 3332 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -49.7 139.7 0.049 0.024 0.000 0.000 1.276 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.245 1.75e-09\n", "V_corr= -382.55049\n", "ibin= 3333 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -28.7 140.4 0.055 0.025 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.170 1.90e-09\n", "V_corr= -361.48871\n", "ibin= 3334 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -28.6 156.5 0.023 0.011 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 8.36e+03 -0.00875 1.17e-09\n", "V_corr= -361.39381\n", "ibin= 3335 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -28.2 176.3 0.068 0.027 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 6.12e+03 0.133 1.05e-09\n", "V_corr= -360.97327\n", "ibin= 3336 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -38.6 170.2 -0.026 0.028 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 7.63e+03 0.138 1.37e-09\n", "V_corr= -371.40844\n", "ibin= 3337 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -41.6 161.7 -0.000 0.048 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+04 -0.151 2.28e-09\n", "V_corr= -374.36600\n", "ibin= 3338 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -32.7 127.3 0.018 0.094 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 5.64e+03 0.130 1.03e-09\n", "V_corr= -365.55402\n", "ibin= 3339 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -31.8 145.3 0.033 0.048 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+04 0.0187 1.95e-09\n", "V_corr= -364.61390\n", "ibin= 3340 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -19.1 163.6 0.020 0.063 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00428 2.76e-09\n", "V_corr= -351.89236\n", "ibin= 3341 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -25.2 165.7 -0.018 -0.009 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 3.37e+03 0.233 7.87e-10\n", "V_corr= -358.02208\n", "ibin= 3342 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -21.8 156.3 -0.047 0.049 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0672 2.90e-09\n", "V_corr= -354.65024\n", "ibin= 3343 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -21.8 165.8 -0.040 -0.029 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 2.74e+03 0.428 8.07e-10\n", "V_corr= -354.58001\n", "ibin= 3344 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 -35.1 160.6 -0.014 0.019 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+03 0.529 5.31e-10\n", "V_corr= -367.90719\n", "ibin= 3345 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -7.5 214.1 -0.012 0.065 0.000 0.000 0.249 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 0.105 3.57e-09\n", "V_corr= -340.29455\n", "ibin= 3346 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -7.8 168.4 -0.011 0.037 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.000766 3.02e-09\n", "V_corr= -340.57328\n", "ibin= 3347 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 -5.9 177.4 -0.041 0.149 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 0.311 3.03e-09\n", "V_corr= -338.68680\n", "ibin= 3348 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 -10.8 188.5 -0.038 0.060 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.346 3.60e-09\n", "V_corr= -343.59304\n", "ibin= 3349 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 30.8 174.3 0.006 0.035 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.238 2.38e-09\n", "V_corr= -301.99530\n", "ibin= 3350 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -16.7 213.2 -0.086 0.089 0.000 0.000 0.857 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.450 3.46e-09\n", "V_corr= -349.48963\n", "ibin= 3351 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 15.5 139.0 -0.039 0.135 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 7.99e+03 0.0927 1.17e-09\n", "V_corr= -317.30140\n", "ibin= 3352 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 189 32.8 160.0 -0.039 0.088 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 3.28e+03 0.300 5.59e-10\n", "V_corr= -299.97651\n", "ibin= 3353 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 10.7 171.2 0.030 0.028 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.137 1.96e-09\n", "V_corr= -322.07973\n", "ibin= 3354 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 18.6 205.4 -0.008 0.090 0.000 0.000 0.307 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.677 4.67e-09\n", "V_corr= -314.17448\n", "ibin= 3355 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 24.5 167.7 0.080 0.085 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0490 1.73e-09\n", "V_corr= -308.27531\n", "ibin= 3356 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 36.1 163.1 -0.026 0.089 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 1.73e-09\n", "V_corr= -296.70171\n", "ibin= 3357 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 22.5 148.0 0.002 0.063 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 0.0694 1.16e-09\n", "V_corr= -310.33464\n", "ibin= 3358 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 50.2 107.2 -0.037 0.041 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 4.79e+03 -0.0795 4.36e-10\n", "V_corr= -282.62753\n", "ibin= 3359 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 48.5 137.1 -0.023 0.143 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0422 1.26e-09\n", "V_corr= -284.27172\n", "ibin= 3360 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 43.6 106.1 -0.046 0.043 0.000 0.000 0.937 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.290 9.72e-10\n", "V_corr= -289.20502\n", "ibin= 3361 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 41.1 131.1 -0.000 -0.022 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.334 7.58e-10\n", "V_corr= -291.68749\n", "ibin= 3362 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 55.7 170.5 0.034 0.047 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.71e+04 0.122 1.08e-09\n", "V_corr= -277.06671\n", "ibin= 3363 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 49.1 158.7 0.008 0.109 0.000 0.000 0.534 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.182 1.05e-09\n", "V_corr= -283.70115\n", "ibin= 3364 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 52.9 183.5 -0.057 0.100 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0204 8.42e-10\n", "V_corr= -279.89566\n", "ibin= 3365 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 85.6 153.3 0.049 0.007 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.189 5.98e-10\n", "V_corr= -247.19127\n", "ibin= 3366 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 57.4 177.2 0.028 0.073 0.000 0.000 0.692 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.105 7.66e-10\n", "V_corr= -275.45193\n", "ibin= 3367 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 49.0 181.4 0.086 0.091 0.000 0.000 0.345 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.484 1.21e-09\n", "V_corr= -283.79515\n", "ibin= 3368 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 63.3 201.3 -0.069 0.027 0.000 0.000 0.444 NaN\n", "Ages, Metallicities, Weights:\n", " 6.55e+03 0.486 4.28e-10\n", "V_corr= -269.49983\n", "ibin= 3369 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 60.9 177.6 -0.095 0.005 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.689 9.65e-11\n", "V_corr= -271.92305\n", "ibin= 3370 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 89.7 213.5 0.080 0.077 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.164 6.85e-10\n", "V_corr= -243.14886\n", "ibin= 3371 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 85.4 123.0 0.023 0.013 0.000 0.000 0.696 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 3.65e+03 -0.0973 1.49e-10\n", "V_corr= -247.39514\n", "ibin= 3372 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 55.6 183.8 0.053 0.032 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.124 6.58e-10\n", "V_corr= -277.23301\n", "ibin= 3373 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 75.4 166.0 -0.010 0.015 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 8.21e+03 -0.0753 2.45e-10\n", "V_corr= -257.41206\n", "ibin= 3374 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 49.5 145.1 -0.017 0.044 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.301 3.55e-10\n", "V_corr= -283.29263\n", "ibin= 3375 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 35.5 103.4 0.004 0.003 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 753. 0.233 2.36e-11\n", "V_corr= -297.32796\n", "ibin= 3376 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 125.0 129.7 0.000 0.028 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0708 3.73e-10\n", "V_corr= -207.79639\n", "ibin= 3377 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 105.2 142.8 0.011 0.097 0.000 0.000 0.684 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0187 3.71e-10\n", "V_corr= -227.64738\n", "ibin= 3378 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 90.8 143.6 0.048 0.027 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.689 4.77e-11\n", "V_corr= -242.00452\n", "ibin= 3379 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 149.0 211.0 0.021 -0.049 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.77e+04 0.253 3.39e-10\n", "V_corr= -183.76256\n", "ibin= 3380 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 231.7 265.6 0.037 0.007 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.202 2.32e-10\n", "V_corr= -101.07009\n", "ibin= 3381 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3382 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3383 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -71.9 134.4 0.044 -0.018 0.000 0.000 1.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 -0.594 3.78e-10\n", "V_corr= -404.66265\n", "ibin= 3384 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 -28.5 184.0 0.106 -0.004 0.000 0.000 1.175 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 0.393 1.84e-10\n", "V_corr= -361.26925\n", "ibin= 3385 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 241 -64.7 110.3 0.030 0.020 0.000 0.000 1.076 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.411 7.52e-10\n", "V_corr= -397.50943\n", "ibin= 3386 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -53.6 113.0 -0.026 0.046 0.000 0.000 0.630 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 -0.387 6.16e-10\n", "V_corr= -386.45831\n", "ibin= 3387 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -10.3 159.4 0.010 0.056 0.000 0.000 2.345 NaN\n", "Ages, Metallicities, Weights:\n", " 5.36e+03 -0.139 3.42e-10\n", "V_corr= -343.11742\n", "ibin= 3388 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -35.9 103.2 0.007 -0.008 0.000 0.000 0.989 NaN\n", "Ages, Metallicities, Weights:\n", " 2.97e+03 -0.130 2.12e-10\n", "V_corr= -368.68599\n", "ibin= 3389 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 -37.1 121.7 -0.035 0.026 0.000 0.000 1.080 NaN\n", "Ages, Metallicities, Weights:\n", " 4.68e+03 -0.242 3.08e-10\n", "V_corr= -369.93062\n", "ibin= 3390 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -25.4 196.0 0.057 0.074 0.000 0.000 1.418 NaN\n", "Ages, Metallicities, Weights:\n", " 3.18e+03 0.307 3.09e-10\n", "V_corr= -358.19901\n", "ibin= 3391 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -57.4 136.1 0.005 -0.022 0.000 0.000 1.001 NaN\n", "Ages, Metallicities, Weights:\n", " 6.07e+03 -0.0212 5.06e-10\n", "V_corr= -390.21328\n", "ibin= 3392 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -23.7 129.7 -0.049 0.045 0.000 0.000 0.816 NaN\n", "Ages, Metallicities, Weights:\n", " 3.67e+03 0.0584 3.30e-10\n", "V_corr= -356.47483\n", "ibin= 3393 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -44.0 129.3 -0.047 -0.026 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 2.16e+03 -0.00781 2.09e-10\n", "V_corr= -376.84294\n", "ibin= 3394 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -32.8 150.6 0.014 0.033 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.253 1.20e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -365.63148\n", "ibin= 3395 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -29.9 137.2 -0.094 0.004 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 5.35e+03 -0.179 4.65e-10\n", "V_corr= -362.69883\n", "ibin= 3396 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -58.9 183.4 0.077 -0.057 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.199 1.24e-09\n", "V_corr= -391.69081\n", "ibin= 3397 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -61.0 153.5 0.058 -0.031 0.000 0.000 0.780 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 -0.0656 2.52e-10\n", "V_corr= -393.76457\n", "ibin= 3398 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -37.4 154.7 0.018 0.008 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.125 1.58e-09\n", "V_corr= -370.20637\n", "ibin= 3399 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -20.0 147.0 -0.049 -0.016 0.000 0.000 0.863 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.320 1.45e-09\n", "V_corr= -352.80646\n", "ibin= 3400 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -40.6 185.4 -0.001 -0.007 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 5.74e+03 0.248 8.56e-10\n", "V_corr= -373.43782\n", "ibin= 3401 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -47.2 137.2 -0.013 0.003 0.000 0.000 0.724 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 0.0567 3.62e-10\n", "V_corr= -379.98528\n", "ibin= 3402 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -36.4 155.8 -0.062 0.057 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0206 2.03e-09\n", "V_corr= -369.18532\n", "ibin= 3403 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -30.2 152.5 -0.009 -0.037 0.000 0.000 0.628 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 1.95e-09\n", "V_corr= -362.97601\n", "ibin= 3404 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -47.9 142.7 -0.033 0.082 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 7.16e+03 0.0619 1.05e-09\n", "V_corr= -380.68691\n", "ibin= 3405 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -37.4 181.0 -0.075 0.010 0.000 0.000 0.797 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 2.52e-09\n", "V_corr= -370.17259\n", "ibin= 3406 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -31.5 181.7 -0.008 0.058 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 8.06e+03 0.294 1.58e-09\n", "V_corr= -364.31295\n", "ibin= 3407 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -40.4 126.5 -0.041 0.042 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+04 -0.140 1.48e-09\n", "V_corr= -373.16812\n", "ibin= 3408 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -39.4 167.9 0.014 -0.002 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 4.65e+03 0.338 9.93e-10\n", "V_corr= -372.18687\n", "ibin= 3409 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -32.5 181.1 -0.069 -0.002 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 6.94e+03 0.235 1.48e-09\n", "V_corr= -365.27372\n", "ibin= 3410 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -25.6 180.7 -0.033 0.068 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0783 2.84e-09\n", "V_corr= -358.40929\n", "ibin= 3411 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -29.7 152.4 -0.034 0.029 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 0.403 7.19e-10\n", "V_corr= -362.50381\n", "ibin= 3412 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -9.0 156.3 -0.032 0.065 0.000 0.000 0.483 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.134 3.01e-09\n", "V_corr= -341.76742\n", "ibin= 3413 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -11.9 180.4 -0.048 0.052 0.000 0.000 0.369 NaN\n", "Ages, Metallicities, Weights:\n", " 6.54e+03 0.188 1.39e-09\n", "V_corr= -344.69058\n", "ibin= 3414 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -13.2 210.1 -0.036 0.053 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 0.399 3.70e-09\n", "V_corr= -346.05441\n", "ibin= 3415 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -22.8 157.0 -0.010 0.054 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0350 2.73e-09\n", "V_corr= -355.60121\n", "ibin= 3416 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -9.4 187.3 0.007 0.029 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.143 2.95e-09\n", "V_corr= -342.20718\n", "ibin= 3417 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -26.5 168.9 -0.051 -0.009 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.133 2.05e-09\n", "V_corr= -359.34194\n", "ibin= 3418 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 2.0 172.7 -0.055 0.055 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.120 2.51e-09\n", "V_corr= -330.78137\n", "ibin= 3419 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 13.9 146.5 -0.099 0.091 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 9.66e+03 0.00345 1.23e-09\n", "V_corr= -318.89926\n", "ibin= 3420 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 18.0 149.8 0.026 0.056 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.225 1.75e-09\n", "V_corr= -314.81728\n", "ibin= 3421 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 15.4 145.9 0.020 0.054 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 3.59e+03 0.0794 4.93e-10\n", "V_corr= -317.45197\n", "ibin= 3422 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 24.0 138.1 -0.013 0.043 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.115 1.78e-09\n", "V_corr= -308.78437\n", "ibin= 3423 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 201 21.7 188.1 -0.057 0.075 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.174 2.00e-09\n", "V_corr= -311.13239\n", "ibin= 3424 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 63.6 139.9 -0.046 0.062 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.161 1.49e-09\n", "V_corr= -269.20228\n", "ibin= 3425 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 185 41.9 181.8 0.007 0.146 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 0.112 1.10e-09\n", "V_corr= -290.95842\n", "ibin= 3426 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 49.2 151.7 0.038 0.118 0.000 0.000 0.367 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0216 1.29e-09\n", "V_corr= -283.59921\n", "ibin= 3427 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 44.7 145.8 0.042 0.094 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 -0.0119 1.12e-09\n", "V_corr= -288.13765\n", "ibin= 3428 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 42.0 140.8 0.018 0.008 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 1.15e-09\n", "V_corr= -290.80258\n", "ibin= 3429 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 61 36.4 109.2 -0.067 0.015 0.000 0.000 0.296 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.286 9.45e-10\n", "V_corr= -296.37162\n", "ibin= 3430 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 51.3 151.0 0.011 0.086 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.120 9.61e-10\n", "V_corr= -281.47326\n", "ibin= 3431 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 40.1 161.4 0.020 0.036 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.135 9.07e-10\n", "V_corr= -292.70346\n", "ibin= 3432 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 34.8 114.8 0.021 0.052 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 6.80e+03 -0.0651 3.52e-10\n", "V_corr= -298.03418\n", "ibin= 3433 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 52.5 129.6 -0.028 0.020 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 -0.202 1.35e-10\n", "V_corr= -280.31400\n", "ibin= 3434 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 28.2 157.0 -0.001 -0.003 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.190 7.55e-10\n", "V_corr= -304.61496\n", "ibin= 3435 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 71.6 126.8 -0.034 -0.008 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+03 0.222 1.13e-10\n", "V_corr= -261.17441\n", "ibin= 3436 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 104.5 161.7 0.039 0.012 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 6.47e-10\n", "V_corr= -228.29394\n", "ibin= 3437 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 49.2 149.9 0.000 0.067 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0990 5.75e-10\n", "V_corr= -283.64777\n", "ibin= 3438 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 296 42.6 191.4 -0.105 0.119 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 0.427 8.37e-10\n", "V_corr= -290.22757\n", "ibin= 3439 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 79.8 131.8 0.057 0.005 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.394 4.65e-10\n", "V_corr= -253.00426\n", "ibin= 3440 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 70.3 168.0 0.033 -0.002 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 3.78e+03 0.328 1.91e-10\n", "V_corr= -262.51375\n", "ibin= 3441 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 67.7 45.4 -0.000 -0.002 0.000 0.000 0.574 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 673. 0.246 2.82e-11\n", "V_corr= -265.09205\n", "ibin= 3442 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 104.8 137.5 0.052 0.016 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 8.16e+03 0.199 2.91e-10\n", "V_corr= -228.03076\n", "ibin= 3443 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 306 72.5 178.6 0.076 0.019 0.000 0.000 0.773 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.293 3.63e-10\n", "V_corr= -260.33446\n", "ibin= 3444 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 63.7 84.7 0.049 0.013 0.000 0.000 0.305 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+03 0.380 7.43e-11\n", "V_corr= -269.09046\n", "ibin= 3445 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 110.7 27.9 0.000 -0.003 0.000 0.000 0.341 NaN\n", "Ages, Metallicities, Weights:\n", " 3.66e+03 -0.898 5.85e-11\n", "V_corr= -222.06137\n", "ibin= 3446 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 86.7 127.2 -0.001 0.029 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.121 3.45e-10\n", "V_corr= -246.11778\n", "ibin= 3447 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 70.7 43.8 0.002 -0.005 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.33 1.46e-10\n", "V_corr= -262.11949\n", "ibin= 3448 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 160.5 217.5 0.004 0.030 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 3.39e+03 0.353 8.24e-11\n", "V_corr= -172.28831\n", "ibin= 3449 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 117.1 231.6 0.030 0.050 0.000 0.000 0.415 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.456 4.21e-10\n", "V_corr= -215.66162\n", "ibin= 3450 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3451 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3452 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 -53.1 130.6 0.017 0.017 0.000 0.000 1.576 NaN\n", "Ages, Metallicities, Weights:\n", " 2.07e+03 -0.0362 1.31e-10\n", "V_corr= -385.87631\n", "ibin= 3453 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -31.2 99.8 -0.033 0.052 0.000 0.000 1.078 NaN\n", "Ages, Metallicities, Weights:\n", " 5.07e+03 -0.296 2.64e-10\n", "V_corr= -363.96930\n", "ibin= 3454 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 187 -43.2 90.9 0.021 -0.003 0.000 0.000 1.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.507 5.82e-10\n", "V_corr= -376.01079\n", "ibin= 3455 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -56.5 120.1 0.035 -0.003 0.000 0.000 1.062 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.315 8.58e-10\n", "V_corr= -389.33602\n", "ibin= 3456 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -55.3 167.5 -0.047 0.026 0.000 0.000 1.519 NaN\n", "Ages, Metallicities, Weights:\n", " 8.25e+03 -0.0106 5.45e-10\n", "V_corr= -388.14292\n", "ibin= 3457 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -37.8 129.9 0.006 0.000 0.000 0.000 0.552 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+03 -0.107 1.36e-10\n", "V_corr= -370.60925\n", "ibin= 3458 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -41.0 129.0 -0.034 0.061 0.000 0.000 1.249 NaN\n", "Ages, Metallicities, Weights:\n", " 2.59e+03 0.0443 2.04e-10\n", "V_corr= -373.84641\n", "ibin= 3459 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 -44.1 143.3 -0.031 0.022 0.000 0.000 0.938 NaN\n", "Ages, Metallicities, Weights:\n", " 3.26e+03 -0.160 2.36e-10\n", "V_corr= -376.91624\n", "ibin= 3460 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -61.5 134.7 -0.036 -0.015 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.267 1.08e-09\n", "V_corr= -394.29975\n", "ibin= 3461 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -34.2 163.5 0.002 -0.002 0.000 0.000 1.219 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+03 0.404 2.17e-10\n", "V_corr= -366.99808\n", "ibin= 3462 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -33.5 148.6 -0.069 -0.058 0.000 0.000 0.883 NaN\n", "Ages, Metallicities, Weights:\n", " 2.16e+03 0.136 2.29e-10\n", "V_corr= -366.28294\n", "ibin= 3463 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -36.5 183.5 0.057 0.006 0.000 0.000 0.943 NaN\n", "Ages, Metallicities, Weights:\n", " 4.05e+03 0.271 4.56e-10\n", "V_corr= -369.33413\n", "ibin= 3464 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -61.4 162.6 -0.022 0.039 0.000 0.000 1.007 NaN\n", "Ages, Metallicities, Weights:\n", " 2.68e+03 0.470 3.77e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -394.18214\n", "ibin= 3465 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -44.0 162.3 0.066 0.032 0.000 0.000 0.802 NaN\n", "Ages, Metallicities, Weights:\n", " 6.02e+03 -0.0254 5.85e-10\n", "V_corr= -376.79929\n", "ibin= 3466 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -16.1 167.4 -0.008 0.030 0.000 0.000 0.874 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0919 1.52e-09\n", "V_corr= -348.88896\n", "ibin= 3467 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 -38.9 152.3 -0.091 0.068 0.000 0.000 0.896 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+03 0.545 2.51e-10\n", "V_corr= -371.71985\n", "ibin= 3468 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 -47.1 156.2 -0.003 0.083 0.000 0.000 0.879 NaN\n", "Ages, Metallicities, Weights:\n", " 3.03e+03 0.224 3.87e-10\n", "V_corr= -379.95063\n", "ibin= 3469 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -44.0 136.6 -0.012 0.047 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0888 1.72e-09\n", "V_corr= -376.80626\n", "ibin= 3470 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -41.5 160.9 0.050 0.031 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0582 1.86e-09\n", "V_corr= -374.26717\n", "ibin= 3471 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -51.5 141.0 0.118 0.031 0.000 0.000 0.673 NaN\n", "Ages, Metallicities, Weights:\n", " 3.91e+03 0.0995 5.48e-10\n", "V_corr= -384.30839\n", "ibin= 3472 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -42.1 169.1 -0.035 0.025 0.000 0.000 0.633 NaN\n", "Ages, Metallicities, Weights:\n", " 6.45e+03 0.143 9.79e-10\n", "V_corr= -374.95049\n", "ibin= 3473 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -6.0 124.8 -0.068 0.046 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 5.08e+03 -0.0266 6.99e-10\n", "V_corr= -338.78385\n", "ibin= 3474 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -41.0 153.3 -0.032 0.052 0.000 0.000 0.757 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0707 2.11e-09\n", "V_corr= -373.77944\n", "ibin= 3475 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -11.8 143.1 -0.071 0.029 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0704 2.20e-09\n", "V_corr= -344.61269\n", "ibin= 3476 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -34.4 126.9 0.044 0.043 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.150 1.55e-09\n", "V_corr= -367.24295\n", "ibin= 3477 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -23.0 133.8 0.014 0.064 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.137 2.20e-09\n", "V_corr= -355.76184\n", "ibin= 3478 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -22.5 154.8 -0.009 0.056 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0430 2.42e-09\n", "V_corr= -355.35119\n", "ibin= 3479 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -44.9 184.0 -0.061 -0.035 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0151 2.67e-09\n", "V_corr= -377.67040\n", "ibin= 3480 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -15.0 155.5 0.057 0.045 0.000 0.000 0.362 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0333 2.52e-09\n", "V_corr= -347.77947\n", "ibin= 3481 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -23.7 175.4 0.013 0.040 0.000 0.000 0.471 NaN\n", "Ages, Metallicities, Weights:\n", " 3.47e+03 0.353 7.57e-10\n", "V_corr= -356.54653\n", "ibin= 3482 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -36.4 171.7 0.008 -0.012 0.000 0.000 0.393 NaN\n", "Ages, Metallicities, Weights:\n", " 6.82e+03 0.147 1.33e-09\n", "V_corr= -369.16515\n", "ibin= 3483 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -25.3 164.6 0.057 0.069 0.000 0.000 0.784 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00167 2.58e-09\n", "V_corr= -358.09318\n", "ibin= 3484 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -23.5 175.2 -0.034 0.084 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.123 2.70e-09\n", "V_corr= -356.35119\n", "ibin= 3485 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -7.1 179.0 -0.011 0.067 0.000 0.000 0.693 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.160 2.72e-09\n", "V_corr= -339.87008\n", "ibin= 3486 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -15.4 154.8 -0.056 0.084 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0606 2.22e-09\n", "V_corr= -348.18754\n", "ibin= 3487 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 10.2 142.4 -0.066 0.029 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.241 1.92e-09\n", "V_corr= -322.61631\n", "ibin= 3488 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 14.3 169.4 0.027 0.081 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.170 1.90e-09\n", "V_corr= -318.51084\n", "ibin= 3489 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 13.0 163.6 -0.036 0.147 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.273 2.29e-09\n", "V_corr= -319.81301\n", "ibin= 3490 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 24.7 152.2 0.049 0.089 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 -0.0732 1.23e-09\n", "V_corr= -308.09534\n", "ibin= 3491 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 20.3 122.1 -0.020 0.068 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 8.22e+03 -0.0679 8.27e-10\n", "V_corr= -312.50895\n", "ibin= 3492 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 30.7 176.9 -0.030 0.085 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.182 1.30e-09\n", "V_corr= -302.12853\n", "ibin= 3493 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -3.9 197.6 -0.035 0.083 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.214 1.69e-09\n", "V_corr= -336.71266\n", "ibin= 3494 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 40.9 176.5 0.080 0.057 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0696 1.38e-09\n", "V_corr= -291.94999\n", "ibin= 3495 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 65.6 137.5 -0.127 0.050 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 9.87e+03 -0.0113 7.17e-10\n", "V_corr= -267.19278\n", "ibin= 3496 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 52.1 129.9 -0.036 0.062 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.105 1.13e-09\n", "V_corr= -280.69772\n", "ibin= 3497 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 57.6 176.9 -0.011 0.032 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0398 1.14e-09\n", "V_corr= -275.17740\n", "ibin= 3498 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 19.4 129.4 -0.082 0.080 0.000 0.000 0.325 NaN\n", "Ages, Metallicities, Weights:\n", " 4.50e+03 0.151 3.35e-10\n", "V_corr= -313.44716\n", "ibin= 3499 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 62.2 106.2 0.039 0.052 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.0774 7.33e-11\n", "V_corr= -270.59843\n", "ibin= 3500 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 37.6 151.5 -0.010 0.123 0.000 0.000 0.297 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.537 1.50e-09\n", "V_corr= -295.22788\n", "ibin= 3501 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 77.6 144.8 0.050 0.042 0.000 0.000 0.631 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.212 7.44e-10\n", "V_corr= -255.20869\n", "ibin= 3502 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 82.8 145.0 0.004 -0.003 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 9.17e+03 -0.00540 4.42e-10\n", "V_corr= -249.97955\n", "ibin= 3503 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 90.0 149.2 0.027 0.050 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 2.90e+03 -0.240 1.29e-10\n", "V_corr= -242.85663\n", "ibin= 3504 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 91.8 132.0 0.048 0.051 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.208 6.12e-10\n", "V_corr= -240.97444\n", "ibin= 3505 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 73.9 110.1 0.025 0.015 0.000 0.000 0.686 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.380 5.43e-10\n", "V_corr= -258.90951\n", "ibin= 3506 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 59.2 149.3 -0.003 0.064 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 0.595 7.65e-10\n", "V_corr= -273.61513\n", "ibin= 3507 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 93.4 188.2 0.001 0.088 0.000 0.000 0.538 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.140 6.31e-10\n", "V_corr= -239.35976\n", "ibin= 3508 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 68.1 117.9 -0.000 0.021 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.359 4.71e-10\n", "V_corr= -264.67175\n", "ibin= 3509 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 62.5 162.0 0.033 0.004 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 670. 0.689 4.34e-11\n", "V_corr= -270.29236\n", "ibin= 3510 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 89.5 109.6 -0.010 0.011 0.000 0.000 0.311 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.411 4.36e-10\n", "V_corr= -243.26256\n", "ibin= 3511 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 83.9 160.1 0.081 0.026 0.000 0.000 0.527 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.231 4.04e-10\n", "V_corr= -248.86143\n", "ibin= 3512 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 55.0 147.0 0.003 0.076 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0840 3.89e-10\n", "V_corr= -277.77525\n", "ibin= 3513 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 27.9 163.7 0.017 -0.000 0.000 0.000 0.639 NaN\n", "Ages, Metallicities, Weights:\n", " 2.14e+03 -0.116 5.86e-11\n", "V_corr= -304.91104\n", "ibin= 3514 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 102.8 114.4 0.013 0.013 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 6.21e+03 -0.196 1.34e-10\n", "V_corr= -229.96700\n", "ibin= 3515 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 84.1 132.7 0.027 0.019 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.183 3.57e-10\n", "V_corr= -248.74578\n", "ibin= 3516 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 349 127.3 183.7 0.021 -0.021 0.000 0.000 0.457 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.307 2.81e-10\n", "V_corr= -205.50957\n", "ibin= 3517 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 124.8 138.4 0.018 0.050 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 3.33e+03 -0.0498 6.00e-11\n", "V_corr= -208.02246\n", "ibin= 3518 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 28.0 323.1 -0.034 0.033 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.394 3.85e-10\n", "V_corr= -304.85169\n", "ibin= 3519 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3520 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3521 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -53.3 135.7 -0.029 -0.015 0.000 0.000 1.138 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.521 6.31e-10\n", "V_corr= -386.07867\n", "ibin= 3522 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -43.5 139.5 0.019 -0.002 0.000 0.000 1.116 NaN\n", "Ages, Metallicities, Weights:\n", " 5.48e+03 -0.179 3.11e-10\n", "V_corr= -376.33113\n", "ibin= 3523 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -61.3 171.3 0.028 0.137 0.000 0.000 0.922 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00573 9.47e-10\n", "V_corr= -394.08607\n", "ibin= 3524 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 -67.9 98.9 0.008 0.032 0.000 0.000 1.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 -0.525 6.41e-10\n", "V_corr= -400.69312\n", "ibin= 3525 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -27.5 114.5 0.008 0.014 0.000 0.000 1.058 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.413 7.94e-10\n", "V_corr= -360.29554\n", "ibin= 3526 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -73.2 133.4 0.038 0.001 0.000 0.000 1.125 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+03 0.330 1.84e-10\n", "V_corr= -406.04584\n", "ibin= 3527 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 -24.4 76.9 -0.019 -0.013 0.000 0.000 1.335 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.709 5.66e-10\n", "V_corr= -357.20595\n", "ibin= 3528 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -42.1 138.4 -0.001 0.015 0.000 0.000 0.848 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.271 1.00e-09\n", "V_corr= -374.90890\n", "ibin= 3529 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -47.3 182.8 0.016 0.040 0.000 0.000 1.178 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.155 1.11e-09\n", "V_corr= -380.13955\n", "ibin= 3530 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -26.2 159.1 -0.001 0.042 0.000 0.000 0.811 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+03 0.583 2.77e-10\n", "V_corr= -359.04565\n", "ibin= 3531 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -60.4 145.4 0.048 0.033 0.000 0.000 1.144 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.181 7.67e-10\n", "V_corr= -393.20020\n", "ibin= 3532 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -36.4 161.6 -0.031 -0.017 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.166 1.29e-09\n", "V_corr= -369.24760\n", "ibin= 3533 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -29.8 138.8 -0.035 0.023 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 1.32e+04 -0.114 9.54e-10\n", "V_corr= -362.62774\n", "ibin= 3534 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -41.5 154.7 -0.034 0.008 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.334 9.69e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -374.32288\n", "ibin= 3535 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -14.5 149.0 0.014 0.031 0.000 0.000 0.753 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+04 -0.262 1.24e-09\n", "V_corr= -347.29898\n", "ibin= 3536 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -43.5 133.9 -0.019 0.017 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 3.48e+03 0.0393 3.94e-10\n", "V_corr= -376.31584\n", "ibin= 3537 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -54.4 173.7 0.041 0.008 0.000 0.000 0.718 NaN\n", "Ages, Metallicities, Weights:\n", " 4.39e+03 0.189 5.68e-10\n", "V_corr= -387.16589\n", "ibin= 3538 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -40.3 154.1 0.054 0.068 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 0.0489 1.19e-09\n", "V_corr= -373.11628\n", "ibin= 3539 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 215 -49.2 142.2 0.031 0.088 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+03 0.401 3.26e-10\n", "V_corr= -382.05536\n", "ibin= 3540 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -31.2 153.7 0.023 -0.094 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 3.34e+03 -0.0458 4.48e-10\n", "V_corr= -364.04290\n", "ibin= 3541 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -27.8 167.5 0.061 0.067 0.000 0.000 0.772 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0876 1.86e-09\n", "V_corr= -360.65429\n", "ibin= 3542 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -52.2 157.4 0.042 0.042 0.000 0.000 0.926 NaN\n", "Ages, Metallicities, Weights:\n", " 3.50e+03 0.367 6.21e-10\n", "V_corr= -384.99420\n", "ibin= 3543 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 -22.5 175.7 -0.005 0.093 0.000 0.000 0.725 NaN\n", "Ages, Metallicities, Weights:\n", " 1.68e+04 0.162 2.11e-09\n", "V_corr= -355.32783\n", "ibin= 3544 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -41.4 158.3 -0.022 -0.035 0.000 0.000 0.894 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.179 2.02e-09\n", "V_corr= -374.16833\n", "ibin= 3545 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 -28.8 143.6 -0.063 0.030 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0534 2.18e-09\n", "V_corr= -361.64882\n", "ibin= 3546 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -19.8 130.1 -0.035 -0.043 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.340 1.76e-09\n", "V_corr= -352.65615\n", "ibin= 3547 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -23.3 148.6 -0.013 -0.013 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+04 -0.0713 1.46e-09\n", "V_corr= -356.11076\n", "ibin= 3548 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -9.6 141.3 -0.002 0.043 0.000 0.000 0.348 NaN\n", "Ages, Metallicities, Weights:\n", " 2.73e+03 0.458 6.18e-10\n", "V_corr= -342.41187\n", "ibin= 3549 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -17.2 170.8 0.023 -0.002 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 9.30e+03 -0.000810 1.39e-09\n", "V_corr= -350.05619\n", "ibin= 3550 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -13.4 164.0 -0.005 0.048 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0970 2.26e-09\n", "V_corr= -346.21064\n", "ibin= 3551 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -22.4 147.8 0.000 0.064 0.000 0.000 0.745 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.113 2.12e-09\n", "V_corr= -355.18020\n", "ibin= 3552 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -5.3 160.4 -0.027 0.049 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0569 2.32e-09\n", "V_corr= -338.15437\n", "ibin= 3553 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 3.6 181.0 -0.003 0.029 0.000 0.000 0.560 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.243 2.83e-09\n", "V_corr= -329.16145\n", "ibin= 3554 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -22.9 187.4 -0.018 0.005 0.000 0.000 0.589 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0526 2.27e-09\n", "V_corr= -355.66217\n", "ibin= 3555 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 604 1.9 177.7 -0.117 0.150 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.642 4.56e-09\n", "V_corr= -330.91057\n", "ibin= 3556 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -18.7 155.4 -0.021 0.040 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 3.24e+03 0.167 5.09e-10\n", "V_corr= -351.54768\n", "ibin= 3557 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 1.0 171.4 -0.048 0.103 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00682 1.99e-09\n", "V_corr= -331.76102\n", "ibin= 3558 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 13.1 137.9 -0.105 0.056 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 1.74e-09\n", "V_corr= -319.70685\n", "ibin= 3559 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 22.7 148.9 0.000 0.056 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 3.27e+03 0.173 4.17e-10\n", "V_corr= -310.06098\n", "ibin= 3560 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 29.5 165.7 -0.081 0.061 0.000 0.000 0.338 NaN\n", "Ages, Metallicities, Weights:\n", " 9.84e+03 0.0430 1.01e-09\n", "V_corr= -303.35310\n", "ibin= 3561 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 2.9 127.4 0.011 -0.005 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 4.37e+03 -0.131 4.30e-10\n", "V_corr= -329.95360\n", "ibin= 3562 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 41.8 107.0 -0.011 0.018 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.382 9.53e-10\n", "V_corr= -291.03056\n", "ibin= 3563 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 24.7 167.9 -0.078 0.067 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 3.35e+03 0.478 4.41e-10\n", "V_corr= -308.14623\n", "ibin= 3564 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 48.1 171.7 0.027 0.106 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 4.59e+03 0.226 4.17e-10\n", "V_corr= -284.74297\n", "ibin= 3565 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 47.7 135.7 -0.002 0.096 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 0.0575 1.10e-09\n", "V_corr= -285.13402\n", "ibin= 3566 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 51.3 142.3 0.032 0.041 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 5.37e+03 0.0173 3.72e-10\n", "V_corr= -281.52317\n", "ibin= 3567 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 37.3 154.6 0.001 0.058 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.122 9.02e-10\n", "V_corr= -295.51129\n", "ibin= 3568 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 49.1 149.7 -0.009 0.052 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 8.12e-10\n", "V_corr= -283.74803\n", "ibin= 3569 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 65.7 199.8 0.068 0.015 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0361 7.99e-10\n", "V_corr= -267.10534\n", "ibin= 3570 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 39.2 120.1 0.059 0.043 0.000 0.000 0.528 NaN\n", "Ages, Metallicities, Weights:\n", " 2.16e+03 0.0366 1.26e-10\n", "V_corr= -293.59664\n", "ibin= 3571 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 78.0 144.8 -0.019 0.035 0.000 0.000 0.767 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.148 7.07e-10\n", "V_corr= -254.78141\n", "ibin= 3572 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 84.5 253.4 -0.005 0.037 0.000 0.000 0.366 NaN\n", "Ages, Metallicities, Weights:\n", " 8.16e+03 0.491 5.10e-10\n", "V_corr= -248.28962\n", "ibin= 3573 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 53.7 136.8 0.071 -0.026 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 904. 0.519 6.05e-11\n", "V_corr= -279.06865\n", "ibin= 3574 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 70.4 164.6 0.043 0.019 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+03 0.513 9.05e-11\n", "V_corr= -262.41556\n", "ibin= 3575 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 227 77.6 223.6 0.025 0.123 0.000 0.000 0.357 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.412 8.76e-10\n", "V_corr= -255.24990\n", "ibin= 3576 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 113.6 179.5 0.029 0.020 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.288 4.27e-10\n", "V_corr= -219.18137\n", "ibin= 3577 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 76.7 216.8 -0.020 0.022 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+03 0.563 8.17e-11\n", "V_corr= -256.07545\n", "ibin= 3578 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 86.1 92.8 0.013 0.012 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 -0.209 4.23e-11\n", "V_corr= -246.71123\n", "ibin= 3579 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 142 78.0 100.7 -0.021 0.009 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 1.48e+04 -0.870 1.93e-10\n", "V_corr= -254.79947\n", "ibin= 3580 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 65.3 150.2 -0.020 -0.028 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.361 3.65e-11\n", "V_corr= -267.51080\n", "ibin= 3581 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 297 100.9 99.4 0.019 0.005 0.000 0.000 0.404 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.48e+04 -0.802 1.86e-10\n", "V_corr= -231.93222\n", "ibin= 3582 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 93.4 192.5 0.030 -0.032 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.199 3.30e-10\n", "V_corr= -239.44324\n", "ibin= 3583 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 29.2 96.5 0.025 0.003 0.000 0.000 0.713 NaN\n", "Ages, Metallicities, Weights:\n", " 961. -0.141 2.23e-11\n", "V_corr= -303.56719\n", "ibin= 3584 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 373 69.4 168.9 0.079 0.041 0.000 0.000 0.356 NaN\n", "Ages, Metallicities, Weights:\n", " 1.07e+03 0.536 3.85e-11\n", "V_corr= -263.38310\n", "ibin= 3585 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 58.2 213.7 -0.013 0.063 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.105 3.43e-10\n", "V_corr= -274.57950\n", "ibin= 3586 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 127.2 125.2 0.028 -0.010 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.464 2.26e-10\n", "V_corr= -205.63573\n", "ibin= 3587 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 144.7 245.6 -0.022 -0.017 0.000 0.000 0.547 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0280 2.87e-10\n", "V_corr= -188.11415\n", "ibin= 3588 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3589 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3590 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -55.7 143.6 0.037 0.047 0.000 0.000 1.196 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 -0.0578 1.35e-10\n", "V_corr= -388.51406\n", "ibin= 3591 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -37.5 149.7 0.058 0.030 0.000 0.000 0.895 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.259 8.06e-10\n", "V_corr= -370.28595\n", "ibin= 3592 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -53.5 156.1 0.003 0.051 0.000 0.000 1.758 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.225 8.11e-10\n", "V_corr= -386.31578\n", "ibin= 3593 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -73.1 160.1 0.107 0.024 0.000 0.000 1.156 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.156 9.17e-10\n", "V_corr= -405.94061\n", "ibin= 3594 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -54.5 117.1 -0.012 -0.041 0.000 0.000 1.275 NaN\n", "Ages, Metallicities, Weights:\n", " 2.68e+03 -0.183 1.78e-10\n", "V_corr= -387.29754\n", "ibin= 3595 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 203 -49.3 200.6 0.028 -0.004 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 0.554 1.70e-10\n", "V_corr= -382.10077\n", "ibin= 3596 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -28.6 130.5 -0.018 0.028 0.000 0.000 0.928 NaN\n", "Ages, Metallicities, Weights:\n", " 3.17e+03 -0.230 2.08e-10\n", "V_corr= -361.43904\n", "ibin= 3597 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -41.1 149.8 0.026 0.092 0.000 0.000 1.634 NaN\n", "Ages, Metallicities, Weights:\n", " 8.39e+03 0.0691 6.25e-10\n", "V_corr= -373.86472\n", "ibin= 3598 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 -33.4 121.9 -0.009 0.033 0.000 0.000 1.305 NaN\n", "Ages, Metallicities, Weights:\n", " 6.49e+03 -0.111 4.57e-10\n", "V_corr= -366.18409\n", "ibin= 3599 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -39.6 138.7 0.022 0.033 0.000 0.000 0.961 NaN\n", "Ages, Metallicities, Weights:\n", " 5.37e+03 -0.100 4.14e-10\n", "V_corr= -372.40065\n", "ibin= 3600 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -46.6 150.3 0.063 0.035 0.000 0.000 0.878 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.157 9.35e-10\n", "V_corr= -379.37829\n", "ibin= 3601 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -20.3 154.8 -0.004 0.023 0.000 0.000 0.965 NaN\n", "Ages, Metallicities, Weights:\n", " 7.78e+03 -0.0181 6.43e-10\n", "V_corr= -353.11486\n", "ibin= 3602 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -43.9 117.9 -0.012 0.070 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 4.89e+03 -0.151 3.99e-10\n", "V_corr= -376.75476\n", "ibin= 3603 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -19.6 168.9 -0.005 0.012 0.000 0.000 1.316 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 -0.153 1.30e-09\n", "V_corr= -352.45866\n", "ibin= 3604 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -62.9 150.6 0.011 0.017 0.000 0.000 0.870 NaN\n", "Ages, Metallicities, Weights:\n", " 3.79e+03 -0.0192 3.82e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -395.73980\n", "ibin= 3605 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -27.1 141.4 0.005 -0.017 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 -0.141 8.81e-10\n", "V_corr= -359.86050\n", "ibin= 3606 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -36.5 178.4 0.067 0.031 0.000 0.000 0.886 NaN\n", "Ages, Metallicities, Weights:\n", " 7.72e+03 0.224 1.01e-09\n", "V_corr= -369.31569\n", "ibin= 3607 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -51.9 179.1 0.023 0.024 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.151 1.90e-09\n", "V_corr= -384.75657\n", "ibin= 3608 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -58.9 139.3 -0.009 0.053 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.152 1.60e-09\n", "V_corr= -391.73439\n", "ibin= 3609 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -31.5 150.6 0.010 0.039 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 -0.120 1.15e-09\n", "V_corr= -364.29030\n", "ibin= 3610 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -31.3 165.5 -0.041 0.014 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0259 1.93e-09\n", "V_corr= -364.09945\n", "ibin= 3611 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -41.3 109.9 0.001 0.034 0.000 0.000 0.856 NaN\n", "Ages, Metallicities, Weights:\n", " 8.97e+03 -0.285 8.21e-10\n", "V_corr= -374.15030\n", "ibin= 3612 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -25.7 176.8 -0.001 0.129 0.000 0.000 0.804 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 0.167 1.69e-09\n", "V_corr= -358.48092\n", "ibin= 3613 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -18.3 176.3 0.004 -0.050 0.000 0.000 0.282 NaN\n", "Ages, Metallicities, Weights:\n", " 9.80e+03 -0.0102 1.26e-09\n", "V_corr= -351.08610\n", "ibin= 3614 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -15.1 166.0 -0.004 0.017 0.000 0.000 0.620 NaN\n", "Ages, Metallicities, Weights:\n", " 7.73e+03 0.0288 1.08e-09\n", "V_corr= -347.86536\n", "ibin= 3615 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -26.2 171.4 -0.029 0.065 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+04 0.197 1.81e-09\n", "V_corr= -359.03658\n", "ibin= 3616 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 156 -27.0 147.4 -0.043 0.101 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0715 2.04e-09\n", "V_corr= -359.85444\n", "ibin= 3617 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 -2.2 136.7 0.004 0.070 0.000 0.000 0.692 NaN\n", "Ages, Metallicities, Weights:\n", " 5.81e+03 -0.0485 8.01e-10\n", "V_corr= -334.99874\n", "ibin= 3618 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -39.5 169.3 0.012 0.001 0.000 0.000 0.915 NaN\n", "Ages, Metallicities, Weights:\n", " 5.31e+03 0.154 8.95e-10\n", "V_corr= -372.34142\n", "ibin= 3619 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -9.7 158.5 -0.020 0.082 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.0831 1.81e-09\n", "V_corr= -342.46335\n", "ibin= 3620 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -10.0 163.5 -0.096 0.070 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0287 2.25e-09\n", "V_corr= -342.80300\n", "ibin= 3621 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -26.2 170.0 0.021 0.032 0.000 0.000 0.372 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0922 2.10e-09\n", "V_corr= -358.96753\n", "ibin= 3622 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -2.7 146.4 0.017 0.042 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+04 0.112 1.53e-09\n", "V_corr= -335.49315\n", "ibin= 3623 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 12.5 147.2 -0.008 -0.017 0.000 0.000 0.306 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.242 1.80e-09\n", "V_corr= -320.32222\n", "ibin= 3624 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -5.5 163.8 0.027 0.023 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0852 1.95e-09\n", "V_corr= -338.29126\n", "ibin= 3625 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -1.2 122.9 -0.017 0.045 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 7.07e+03 -0.0556 8.34e-10\n", "V_corr= -334.05681\n", "ibin= 3626 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 202 -0.9 178.3 -0.067 0.093 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.675 4.42e-09\n", "V_corr= -333.66720\n", "ibin= 3627 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -6.7 167.5 -0.018 0.070 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 2.19e+03 0.620 4.40e-10\n", "V_corr= -339.51174\n", "ibin= 3628 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 12.6 185.6 0.074 0.055 0.000 0.000 0.581 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.173 1.87e-09\n", "V_corr= -320.17199\n", "ibin= 3629 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 6.4 139.7 0.012 0.022 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 5.44e+03 0.0494 5.82e-10\n", "V_corr= -326.45502\n", "ibin= 3630 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 29.7 130.6 -0.102 0.050 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 6.08e+03 -0.0851 5.56e-10\n", "V_corr= -303.13108\n", "ibin= 3631 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 178 12.0 187.8 -0.006 0.117 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.558 2.56e-09\n", "V_corr= -320.84055\n", "ibin= 3632 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 29.5 151.3 0.035 0.039 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.140 1.16e-09\n", "V_corr= -303.31480\n", "ibin= 3633 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 47.9 157.7 0.018 0.032 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.259 8.23e-10\n", "V_corr= -284.87010\n", "ibin= 3634 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 65.0 169.3 -0.038 0.052 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+04 0.105 1.12e-09\n", "V_corr= -267.78752\n", "ibin= 3635 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 27.2 177.0 0.005 0.045 0.000 0.000 0.733 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.268 7.58e-10\n", "V_corr= -305.63960\n", "ibin= 3636 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 37.0 172.4 -0.008 0.080 0.000 0.000 0.643 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 0.205 9.63e-10\n", "V_corr= -295.84395\n", "ibin= 3637 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 44.2 140.8 -0.054 -0.024 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 -0.196 5.98e-10\n", "V_corr= -288.65449\n", "ibin= 3638 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 41.3 130.8 0.036 -0.001 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.252 6.01e-10\n", "V_corr= -291.48934\n", "ibin= 3639 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 82.0 207.6 0.009 0.044 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0461 9.11e-10\n", "V_corr= -250.80543\n", "ibin= 3640 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 47.7 126.1 0.018 0.023 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.470 5.08e-10\n", "V_corr= -285.13331\n", "ibin= 3641 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 47.9 209.0 -0.017 0.060 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 0.243 7.98e-10\n", "V_corr= -284.90097\n", "ibin= 3642 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 46.8 114.8 0.033 -0.023 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 9.63e+03 -0.405 2.95e-10\n", "V_corr= -285.97016\n", "ibin= 3643 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 60.9 143.9 -0.025 -0.001 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.215 6.13e-10\n", "V_corr= -271.89358\n", "ibin= 3644 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 75.8 172.5 -0.029 -0.001 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.12e+03 0.656 7.74e-11\n", "V_corr= -257.05410\n", "ibin= 3645 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 80.0 196.7 0.005 0.001 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0684 5.92e-10\n", "V_corr= -252.83559\n", "ibin= 3646 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 92.5 123.9 0.054 0.003 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.366 4.60e-10\n", "V_corr= -240.32534\n", "ibin= 3647 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 79.1 149.6 -0.000 0.017 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+04 -0.297 3.27e-10\n", "V_corr= -253.71962\n", "ibin= 3648 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 119.8 169.7 0.052 -0.028 0.000 0.000 0.649 NaN\n", "Ages, Metallicities, Weights:\n", " 821. 0.689 4.08e-11\n", "V_corr= -213.02131\n", "ibin= 3649 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 84.1 170.1 0.030 -0.028 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 2.68e+03 0.419 9.48e-11\n", "V_corr= -248.69989\n", "ibin= 3650 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 56.2 111.8 0.004 0.033 0.000 0.000 0.368 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.657 2.15e-10\n", "V_corr= -276.56128\n", "ibin= 3651 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 92.9 149.8 -0.042 -0.084 0.000 0.000 0.551 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 570. 0.489 2.10e-11\n", "V_corr= -239.93220\n", "ibin= 3652 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 85.2 105.5 0.026 0.009 0.000 0.000 0.454 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.747 1.74e-10\n", "V_corr= -247.64499\n", "ibin= 3653 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 103.0 133.9 0.030 0.019 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 3.51e+03 0.268 9.59e-11\n", "V_corr= -229.79441\n", "ibin= 3654 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 94.1 160.4 0.055 0.051 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.112 2.95e-10\n", "V_corr= -238.68169\n", "ibin= 3655 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 337 98.5 248.8 -0.013 0.033 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.268 2.69e-10\n", "V_corr= -234.26067\n", "ibin= 3656 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 154.0 236.1 0.037 -0.041 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 0.0370 2.90e-10\n", "V_corr= -178.76720\n", "ibin= 3657 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3658 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3659 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -98.0 123.2 0.033 -0.012 0.000 0.000 1.845 NaN\n", "Ages, Metallicities, Weights:\n", " 4.11e+03 -0.323 2.09e-10\n", "V_corr= -430.85149\n", "ibin= 3660 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -52.2 147.6 -0.002 0.084 0.000 0.000 1.467 NaN\n", "Ages, Metallicities, Weights:\n", " 5.30e+03 0.0135 3.20e-10\n", "V_corr= -384.97443\n", "ibin= 3661 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -69.8 120.5 -0.011 0.020 0.000 0.000 1.549 NaN\n", "Ages, Metallicities, Weights:\n", " 3.00e+03 0.0314 2.01e-10\n", "V_corr= -402.59500\n", "ibin= 3662 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -54.6 170.2 0.048 0.074 0.000 0.000 0.952 NaN\n", "Ages, Metallicities, Weights:\n", " 5.84e+03 0.149 4.17e-10\n", "V_corr= -387.43634\n", "ibin= 3663 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -46.4 157.4 0.005 0.072 0.000 0.000 1.809 NaN\n", "Ages, Metallicities, Weights:\n", " 7.77e+03 0.214 6.18e-10\n", "V_corr= -379.22733\n", "ibin= 3664 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -48.1 146.6 -0.000 0.063 0.000 0.000 1.312 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0510 1.03e-09\n", "V_corr= -380.90199\n", "ibin= 3665 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -47.2 145.8 0.032 0.078 0.000 0.000 0.720 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 9.99e-10\n", "V_corr= -380.05212\n", "ibin= 3666 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -41.5 99.1 0.021 0.019 0.000 0.000 0.927 NaN\n", "Ages, Metallicities, Weights:\n", " 5.22e+03 -0.322 3.18e-10\n", "V_corr= -374.34713\n", "ibin= 3667 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 -36.3 159.9 -0.033 -0.013 0.000 0.000 1.094 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.271 1.03e-09\n", "V_corr= -369.09124\n", "ibin= 3668 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -66.8 141.4 -0.008 0.043 0.000 0.000 1.206 NaN\n", "Ages, Metallicities, Weights:\n", " 3.44e+03 0.155 3.05e-10\n", "V_corr= -399.62621\n", "ibin= 3669 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -47.2 148.5 0.067 0.005 0.000 0.000 0.695 NaN\n", "Ages, Metallicities, Weights:\n", " 2.71e+03 0.163 2.60e-10\n", "V_corr= -380.05711\n", "ibin= 3670 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -62.5 164.5 -0.008 0.081 0.000 0.000 1.586 NaN\n", "Ages, Metallicities, Weights:\n", " 4.05e+03 0.511 5.26e-10\n", "V_corr= -395.28847\n", "ibin= 3671 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -65.7 144.1 0.058 0.043 0.000 0.000 0.872 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.149 1.23e-09\n", "V_corr= -398.47490\n", "ibin= 3672 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -50.5 165.2 -0.055 0.032 0.000 0.000 1.598 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.139 1.32e-09\n", "V_corr= -383.35142\n", "ibin= 3673 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -44.7 185.4 0.038 0.044 0.000 0.000 0.706 NaN\n", "Ages, Metallicities, Weights:\n", " 2.83e+03 0.620 4.96e-10\n", "V_corr= -377.52920\n", "ibin= 3674 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 143 -35.8 157.1 -0.079 0.140 0.000 0.000 1.128 NaN\n", "Ages, Metallicities, Weights:\n", " 6.13e+03 0.329 7.44e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -368.60518\n", "ibin= 3675 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -46.3 150.9 -0.020 0.007 0.000 0.000 0.839 NaN\n", "Ages, Metallicities, Weights:\n", " 6.35e+03 -0.127 5.98e-10\n", "V_corr= -379.07932\n", "ibin= 3676 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -49.8 155.8 0.000 0.018 0.000 0.000 0.713 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.132 1.54e-09\n", "V_corr= -382.57778\n", "ibin= 3677 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -53.7 147.6 0.014 0.042 0.000 0.000 0.519 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+04 -0.130 1.23e-09\n", "V_corr= -386.47088\n", "ibin= 3678 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -48.7 141.8 -0.063 0.014 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 4.93e+03 -0.0713 5.54e-10\n", "V_corr= -381.48933\n", "ibin= 3679 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -28.4 150.9 -0.030 -0.037 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.213 1.68e-09\n", "V_corr= -361.17238\n", "ibin= 3680 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -19.3 134.5 -0.061 0.047 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0562 1.80e-09\n", "V_corr= -352.09208\n", "ibin= 3681 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -36.8 149.7 0.037 0.012 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0400 1.90e-09\n", "V_corr= -369.56445\n", "ibin= 3682 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -35.0 150.6 -0.013 0.024 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 9.96e+03 0.00143 1.18e-09\n", "V_corr= -367.81987\n", "ibin= 3683 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -26.7 139.9 -0.054 -0.033 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 -0.378 1.22e-09\n", "V_corr= -359.50819\n", "ibin= 3684 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -19.0 144.8 -0.008 -0.035 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 1.92e-09\n", "V_corr= -351.77154\n", "ibin= 3685 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -32.1 150.7 0.011 -0.009 0.000 0.000 0.707 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.105 2.02e-09\n", "V_corr= -364.94658\n", "ibin= 3686 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -17.9 182.2 0.017 0.114 0.000 0.000 0.315 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.371 1.88e-09\n", "V_corr= -350.67739\n", "ibin= 3687 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -18.8 172.0 -0.092 0.014 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 2.81e+03 0.271 4.89e-10\n", "V_corr= -351.61696\n", "ibin= 3688 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 3.1 141.1 -0.050 0.034 0.000 0.000 0.369 NaN\n", "Ages, Metallicities, Weights:\n", " 1.01e+04 -0.0119 1.25e-09\n", "V_corr= -329.73204\n", "ibin= 3689 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 70 6.9 166.4 -0.050 0.007 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 -0.0502 1.90e-09\n", "V_corr= -325.86357\n", "ibin= 3690 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 2.4 170.5 -0.073 0.012 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 0.529 4.42e-10\n", "V_corr= -330.41897\n", "ibin= 3691 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -22.4 169.0 0.055 0.062 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 5.50e+03 0.0994 7.47e-10\n", "V_corr= -355.21315\n", "ibin= 3692 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -8.0 165.1 0.011 0.015 0.000 0.000 0.695 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.197 2.23e-09\n", "V_corr= -340.81327\n", "ibin= 3693 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -11.9 156.9 -0.049 0.074 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 4.32e+03 0.268 6.24e-10\n", "V_corr= -344.68485\n", "ibin= 3694 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -4.4 162.0 -0.003 0.077 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+04 0.0270 1.17e-09\n", "V_corr= -337.19804\n", "ibin= 3695 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 5.9 158.9 0.036 0.015 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 -0.204 1.20e-09\n", "V_corr= -326.86519\n", "ibin= 3696 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 2.8 132.2 -0.030 0.039 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 5.25e+03 -0.0751 5.35e-10\n", "V_corr= -329.97790\n", "ibin= 3697 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 6.0 179.1 -0.002 0.049 0.000 0.000 0.353 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0165 1.57e-09\n", "V_corr= -326.75924\n", "ibin= 3698 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 6.8 166.7 -0.009 0.060 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0756 1.53e-09\n", "V_corr= -326.04901\n", "ibin= 3699 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 11.7 129.4 0.027 0.105 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.273 1.13e-09\n", "V_corr= -321.09743\n", "ibin= 3700 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 31.4 144.7 -0.010 0.046 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.222 1.12e-09\n", "V_corr= -301.39211\n", "ibin= 3701 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 20.0 120.4 0.054 0.021 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.477 8.27e-10\n", "V_corr= -312.77442\n", "ibin= 3702 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 41.5 129.7 -0.024 0.033 0.000 0.000 0.564 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.312 8.22e-10\n", "V_corr= -291.27537\n", "ibin= 3703 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 23.6 136.8 0.050 0.033 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+04 -0.0319 5.97e-10\n", "V_corr= -309.17485\n", "ibin= 3704 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 71.0 153.2 0.023 -0.071 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.156 6.75e-10\n", "V_corr= -261.80106\n", "ibin= 3705 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 42.5 188.8 -0.014 -0.005 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 8.48e+03 0.0917 4.43e-10\n", "V_corr= -290.28170\n", "ibin= 3706 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 37.1 97.3 0.011 -0.004 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.333 5.63e-10\n", "V_corr= -295.70634\n", "ibin= 3707 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 38.9 126.0 -0.011 0.093 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 3.22e+03 0.187 1.73e-10\n", "V_corr= -293.87870\n", "ibin= 3708 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 216 50.5 181.8 -0.021 0.074 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0463 7.71e-10\n", "V_corr= -282.28992\n", "ibin= 3709 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 35.9 157.9 0.018 0.013 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 2.23e+03 -0.191 1.04e-10\n", "V_corr= -296.92600\n", "ibin= 3710 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 88.9 238.1 0.086 0.014 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0150 7.22e-10\n", "V_corr= -243.93171\n", "ibin= 3711 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 71.4 128.1 0.001 0.066 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.198 5.84e-10\n", "V_corr= -261.37717\n", "ibin= 3712 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 73.1 146.2 -0.015 0.031 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.273 5.26e-10\n", "V_corr= -259.73793\n", "ibin= 3713 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 94.3 192.8 -0.116 0.049 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.297 6.42e-10\n", "V_corr= -238.54477\n", "ibin= 3714 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 56.5 98.1 0.006 0.030 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 4.28e+03 -0.275 1.31e-10\n", "V_corr= -276.31801\n", "ibin= 3715 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 94.4 162.4 0.017 0.016 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 0.689 8.60e-11\n", "V_corr= -238.43970\n", "ibin= 3716 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 96.0 87.2 -0.022 -0.006 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.667 2.52e-10\n", "V_corr= -236.79646\n", "ibin= 3717 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 165 54.8 90.9 0.001 0.023 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 5.01e+03 -0.292 1.06e-10\n", "V_corr= -278.04433\n", "ibin= 3718 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 88.0 76.2 0.007 0.005 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 -0.321 5.90e-11\n", "V_corr= -244.84402\n", "ibin= 3719 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 55.2 106.7 -0.005 0.044 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.520 2.48e-10\n", "V_corr= -277.56256\n", "ibin= 3720 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 108.5 148.6 -0.015 0.001 0.000 0.000 0.492 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 -0.00745 3.31e-10\n", "V_corr= -224.29166\n", "ibin= 3721 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 137.1 151.6 -0.019 -0.028 0.000 0.000 0.356 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.144 3.26e-10\n", "V_corr= -195.74096\n", "ibin= 3722 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 127.9 117.7 0.035 0.002 0.000 0.000 0.381 NaN\n", "Ages, Metallicities, Weights:\n", " 4.52e+03 -0.390 8.51e-11\n", "V_corr= -204.87998\n", "ibin= 3723 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 525 65.2 320.1 -0.081 0.071 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0705 3.03e-10\n", "V_corr= -267.62755\n", "ibin= 3724 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 114.4 26.2 0.001 -0.002 0.000 0.000 0.414 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.577 2.30e-10\n", "V_corr= -218.39239\n", "ibin= 3725 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 135.0 163.3 0.037 -0.000 0.000 0.000 0.861 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.208 1.97e-10\n", "V_corr= -197.84427\n", "ibin= 3726 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3727 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3728 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -58.9 155.7 0.109 -0.006 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+03 0.529 1.18e-10\n", "V_corr= -391.72921\n", "ibin= 3729 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -61.5 128.7 -0.005 -0.024 0.000 0.000 0.785 NaN\n", "Ages, Metallicities, Weights:\n", " 6.49e+03 -0.00466 4.04e-10\n", "V_corr= -394.25996\n", "ibin= 3730 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -37.2 137.6 -0.074 0.040 0.000 0.000 1.055 NaN\n", "Ages, Metallicities, Weights:\n", " 2.37e+03 0.134 1.69e-10\n", "V_corr= -370.03150\n", "ibin= 3731 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -43.7 188.6 0.022 0.059 0.000 0.000 1.988 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0460 1.01e-09\n", "V_corr= -376.48006\n", "ibin= 3732 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -42.4 140.2 0.015 0.092 0.000 0.000 1.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.134 9.15e-10\n", "V_corr= -375.19212\n", "ibin= 3733 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -60.3 148.4 0.005 -0.012 0.000 0.000 2.651 NaN\n", "Ages, Metallicities, Weights:\n", " 3.70e+03 -0.0158 2.65e-10\n", "V_corr= -393.13452\n", "ibin= 3734 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 240 -36.7 125.9 -0.057 0.084 0.000 0.000 1.027 NaN\n", "Ages, Metallicities, Weights:\n", " 2.09e+03 0.139 1.67e-10\n", "V_corr= -369.47789\n", "ibin= 3735 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -63.8 107.4 0.011 0.017 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 3.18e+03 0.0451 2.51e-10\n", "V_corr= -396.55956\n", "ibin= 3736 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -35.3 122.2 0.013 -0.025 0.000 0.000 1.185 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.429 8.81e-10\n", "V_corr= -368.12714\n", "ibin= 3737 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -53.7 159.3 -0.003 0.036 0.000 0.000 0.836 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.129 1.12e-09\n", "V_corr= -386.48520\n", "ibin= 3738 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -54.6 167.8 0.067 -0.035 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 3.32e+03 0.0397 2.97e-10\n", "V_corr= -387.41108\n", "ibin= 3739 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -48.9 144.9 -0.026 -0.007 0.000 0.000 0.964 NaN\n", "Ages, Metallicities, Weights:\n", " 8.65e+03 -0.0891 6.43e-10\n", "V_corr= -381.68109\n", "ibin= 3740 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 269 -60.7 122.7 -0.002 0.075 0.000 0.000 1.174 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.163 1.19e-09\n", "V_corr= -393.50341\n", "ibin= 3741 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -49.7 182.4 -0.008 0.046 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.117 1.51e-09\n", "V_corr= -382.52497\n", "ibin= 3742 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -44.5 165.4 -0.003 0.018 0.000 0.000 0.869 NaN\n", "Ages, Metallicities, Weights:\n", " 3.47e+03 0.152 3.74e-10\n", "V_corr= -377.34473\n", "ibin= 3743 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -34.3 136.1 0.066 0.147 0.000 0.000 0.623 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 1.31e-09\n", "V_corr= -367.14895\n", "ibin= 3744 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -31.2 151.5 0.006 0.064 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0368 1.50e-09\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -363.97249\n", "ibin= 3745 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 272 -45.1 184.2 0.021 0.058 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.628 3.44e-09\n", "V_corr= -377.94906\n", "ibin= 3746 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -37.6 154.5 0.026 0.048 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.136 1.53e-09\n", "V_corr= -370.35932\n", "ibin= 3747 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 -37.7 149.1 0.037 0.049 0.000 0.000 0.770 NaN\n", "Ages, Metallicities, Weights:\n", " 4.20e+03 0.0221 4.76e-10\n", "V_corr= -370.48911\n", "ibin= 3748 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -48.2 154.3 -0.017 0.003 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 5.74e+03 -0.0724 6.31e-10\n", "V_corr= -381.02251\n", "ibin= 3749 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -24.6 146.9 -0.053 0.013 0.000 0.000 0.759 NaN\n", "Ages, Metallicities, Weights:\n", " 5.39e+03 0.0325 6.52e-10\n", "V_corr= -357.39200\n", "ibin= 3750 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -39.6 153.2 0.049 0.084 0.000 0.000 0.675 NaN\n", "Ages, Metallicities, Weights:\n", " 3.12e+03 0.484 5.50e-10\n", "V_corr= -372.45211\n", "ibin= 3751 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -35.6 155.4 -0.025 -0.025 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 3.45e+03 0.0728 4.68e-10\n", "V_corr= -368.42523\n", "ibin= 3752 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -16.9 120.0 0.019 0.048 0.000 0.000 0.819 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.409 1.41e-09\n", "V_corr= -349.73675\n", "ibin= 3753 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -22.2 150.5 -0.012 0.074 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 7.58e+03 0.0589 9.69e-10\n", "V_corr= -354.96158\n", "ibin= 3754 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -19.8 147.7 0.047 0.037 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 1.80e-09\n", "V_corr= -352.58980\n", "ibin= 3755 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -23.2 176.5 0.008 0.027 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0461 2.03e-09\n", "V_corr= -356.02371\n", "ibin= 3756 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 90 -29.3 158.1 -0.040 0.066 0.000 0.000 0.271 NaN\n", "Ages, Metallicities, Weights:\n", " 2.46e+03 0.512 4.66e-10\n", "V_corr= -362.09349\n", "ibin= 3757 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 224 -40.7 154.4 -0.026 0.019 0.000 0.000 0.624 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 0.448 2.43e-10\n", "V_corr= -373.54505\n", "ibin= 3758 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -22.0 148.1 -0.070 0.030 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 8.95e+03 -0.0705 9.29e-10\n", "V_corr= -354.83411\n", "ibin= 3759 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -2.6 154.5 -0.026 0.066 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0396 1.74e-09\n", "V_corr= -335.38833\n", "ibin= 3760 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -5.3 145.3 -0.041 0.096 0.000 0.000 0.753 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 -0.00115 1.13e-09\n", "V_corr= -338.09306\n", "ibin= 3761 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 0.0 163.7 0.062 0.004 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.165 1.66e-09\n", "V_corr= -332.78361\n", "ibin= 3762 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 275 -3.9 180.6 -0.022 0.123 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 0.0804 1.73e-09\n", "V_corr= -336.72797\n", "ibin= 3763 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 13.3 124.9 0.031 0.076 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 7.67e+03 -0.0668 7.48e-10\n", "V_corr= -319.53897\n", "ibin= 3764 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 18.8 147.4 -0.003 0.020 0.000 0.000 0.355 NaN\n", "Ages, Metallicities, Weights:\n", " 6.89e+03 -0.0360 7.02e-10\n", "V_corr= -313.98981\n", "ibin= 3765 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -5.2 149.2 -0.046 0.000 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 2.45e+03 0.226 3.08e-10\n", "V_corr= -338.00297\n", "ibin= 3766 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 13.6 148.0 0.038 0.085 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+03 0.628 1.99e-10\n", "V_corr= -319.16877\n", "ibin= 3767 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 10.0 162.3 0.010 0.083 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0677 1.33e-09\n", "V_corr= -322.84229\n", "ibin= 3768 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 38.8 108.4 -0.054 0.022 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.396 1.01e-09\n", "V_corr= -294.01137\n", "ibin= 3769 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 21.3 131.0 0.053 0.100 0.000 0.000 0.521 NaN\n", "Ages, Metallicities, Weights:\n", " 4.31e+03 0.117 3.53e-10\n", "V_corr= -311.48271\n", "ibin= 3770 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 38.0 129.0 0.031 0.034 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.165 9.51e-10\n", "V_corr= -294.79208\n", "ibin= 3771 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 34.8 122.2 -0.019 0.056 0.000 0.000 0.382 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 8.27e-10\n", "V_corr= -298.04765\n", "ibin= 3772 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 59.9 148.7 0.088 0.117 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.114 7.36e-10\n", "V_corr= -272.87806\n", "ibin= 3773 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 35.1 131.4 0.052 0.039 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.219 7.56e-10\n", "V_corr= -297.74937\n", "ibin= 3774 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 10.0 156.5 0.009 0.071 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0228 7.55e-10\n", "V_corr= -322.84755\n", "ibin= 3775 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 58.6 131.8 -0.010 0.053 0.000 0.000 0.269 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.354 5.63e-10\n", "V_corr= -274.23315\n", "ibin= 3776 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 33.6 142.5 0.001 0.030 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 7.19e-10\n", "V_corr= -299.18505\n", "ibin= 3777 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 22.7 158.4 0.026 0.032 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.172 6.89e-10\n", "V_corr= -310.10333\n", "ibin= 3778 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 38.2 113.7 -0.011 0.027 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.458 5.10e-10\n", "V_corr= -294.58945\n", "ibin= 3779 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 244 89.2 74.0 0.013 0.020 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+03 -0.206 6.14e-11\n", "V_corr= -243.59988\n", "ibin= 3780 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 40.9 138.7 -0.034 0.092 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.285 4.93e-10\n", "V_corr= -291.88234\n", "ibin= 3781 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 472 95.7 185.3 0.046 0.051 0.000 0.000 0.725 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 1.52e-09\n", "V_corr= -237.15357\n", "ibin= 3782 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 88.3 143.5 0.011 0.040 0.000 0.000 0.821 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.128 5.02e-10\n", "V_corr= -244.52289\n", "ibin= 3783 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 54.5 132.9 0.025 0.011 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 5.06e+03 -0.273 1.46e-10\n", "V_corr= -278.31061\n", "ibin= 3784 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 122.6 165.3 -0.000 0.002 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.208 3.65e-10\n", "V_corr= -210.17186\n", "ibin= 3785 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 232 107.4 191.9 -0.004 0.026 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 8.76e+03 0.664 2.39e-10\n", "V_corr= -225.45763\n", "ibin= 3786 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 91.9 166.7 -0.008 0.002 0.000 0.000 0.708 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.154 4.04e-10\n", "V_corr= -240.90302\n", "ibin= 3787 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 71.2 144.2 0.033 -0.024 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+03 0.513 3.73e-11\n", "V_corr= -261.65779\n", "ibin= 3788 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 242 154.0 227.0 0.039 -0.015 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0395 3.61e-10\n", "V_corr= -178.83686\n", "ibin= 3789 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 134.6 182.7 -0.028 -0.015 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 924. 0.515 3.04e-11\n", "V_corr= -198.22008\n", "ibin= 3790 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 53.4 147.5 0.035 0.028 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+03 0.233 5.25e-11\n", "V_corr= -279.41326\n", "ibin= 3791 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 298 127.4 155.9 0.015 -0.033 0.000 0.000 0.345 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 2.87e+03 -0.0245 6.23e-11\n", "V_corr= -205.37856\n", "ibin= 3792 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 44.2 256.5 -0.017 0.016 0.000 0.000 0.680 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 0.689 4.35e-11\n", "V_corr= -288.62283\n", "ibin= 3793 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 176 106.6 278.7 0.008 0.048 0.000 0.000 0.841 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 0.689 4.57e-11\n", "V_corr= -226.20690\n", "ibin= 3794 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 143 195.2 138.8 0.031 -0.015 0.000 0.000 0.437 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.876 1.31e-10\n", "V_corr= -137.58437\n", "ibin= 3795 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3796 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3797 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -70.8 128.2 0.081 0.019 0.000 0.000 10.673 NaN\n", "Ages, Metallicities, Weights:\n", " 2.64e+03 0.202 1.73e-10\n", "V_corr= -403.61592\n", "ibin= 3798 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -61.8 145.7 0.028 0.108 0.000 0.000 1.057 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 0.0444 2.49e-10\n", "V_corr= -394.65848\n", "ibin= 3799 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -43.8 124.5 0.002 0.009 0.000 0.000 1.057 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 8.09e-10\n", "V_corr= -376.65587\n", "ibin= 3800 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -39.7 127.6 0.004 0.027 0.000 0.000 1.158 NaN\n", "Ages, Metallicities, Weights:\n", " 3.06e+03 -0.150 1.83e-10\n", "V_corr= -372.52207\n", "ibin= 3801 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -65.0 126.8 0.021 0.032 0.000 0.000 1.630 NaN\n", "Ages, Metallicities, Weights:\n", " 4.70e+03 -0.293 2.62e-10\n", "V_corr= -397.78089\n", "ibin= 3802 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -34.8 143.0 0.013 0.081 0.000 0.000 0.998 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.182 9.06e-10\n", "V_corr= -367.58267\n", "ibin= 3803 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -44.1 153.5 0.047 0.025 0.000 0.000 0.821 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.130 1.01e-09\n", "V_corr= -376.86480\n", "ibin= 3804 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -49.7 154.2 -0.014 0.058 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.630 1.41e-10\n", "V_corr= -382.54976\n", "ibin= 3805 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -48.4 157.4 0.038 0.060 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 8.41e+03 -0.0386 5.67e-10\n", "V_corr= -381.20617\n", "ibin= 3806 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -47.3 114.9 0.013 -0.017 0.000 0.000 0.680 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 -0.174 1.93e-10\n", "V_corr= -380.13193\n", "ibin= 3807 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 -63.7 124.4 -0.008 0.030 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 1.43e+03 0.0860 1.19e-10\n", "V_corr= -396.52140\n", "ibin= 3808 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -68.9 140.6 0.047 0.035 0.000 0.000 1.266 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.261 6.70e-10\n", "V_corr= -401.69285\n", "ibin= 3809 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -61.1 182.8 -0.048 -0.085 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 3.99e+03 0.0953 3.95e-10\n", "V_corr= -393.90031\n", "ibin= 3810 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -57.2 160.8 0.035 0.030 0.000 0.000 0.860 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 0.191 2.31e-10\n", "V_corr= -389.98348\n", "ibin= 3811 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 -47.8 171.6 0.063 0.001 0.000 0.000 0.789 NaN\n", "Ages, Metallicities, Weights:\n", " 4.12e+03 -0.00364 3.91e-10\n", "V_corr= -380.65629\n", "ibin= 3812 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -45.4 162.2 0.018 0.058 0.000 0.000 0.746 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0735 1.52e-09\n", "V_corr= -378.17652\n", "ibin= 3813 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 101 -49.3 164.7 0.060 0.035 0.000 0.000 0.720 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.406 3.10e-10\n", "V_corr= -382.12598\n", "ibin= 3814 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 -36.9 155.9 -0.022 0.058 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 6.85e+03 -0.00368 6.65e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -369.69097\n", "ibin= 3815 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 86 -32.5 150.1 -0.007 0.054 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0520 1.55e-09\n", "V_corr= -365.35338\n", "ibin= 3816 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -34.0 146.2 -0.006 0.014 0.000 0.000 0.698 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.196 1.48e-09\n", "V_corr= -366.85853\n", "ibin= 3817 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -43.3 155.6 -0.090 0.039 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 2.60e+03 0.461 4.24e-10\n", "V_corr= -376.13533\n", "ibin= 3818 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -40.9 178.7 -0.010 0.064 0.000 0.000 0.719 NaN\n", "Ages, Metallicities, Weights:\n", " 8.92e+03 0.339 1.25e-09\n", "V_corr= -373.74235\n", "ibin= 3819 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -35.8 169.6 0.020 0.052 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 3.10e+03 0.459 5.24e-10\n", "V_corr= -368.62553\n", "ibin= 3820 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -23.6 184.2 -0.030 0.033 0.000 0.000 0.600 NaN\n", "Ages, Metallicities, Weights:\n", " 4.44e+03 0.495 7.85e-10\n", "V_corr= -356.36513\n", "ibin= 3821 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -45.4 171.9 0.013 -0.009 0.000 0.000 1.036 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+04 0.247 1.57e-09\n", "V_corr= -378.20060\n", "ibin= 3822 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 -47.2 140.4 0.013 0.011 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 2.14e+03 0.481 3.83e-10\n", "V_corr= -380.02222\n", "ibin= 3823 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -9.3 145.0 -0.049 -0.070 0.000 0.000 0.491 NaN\n", "Ages, Metallicities, Weights:\n", " 2.98e+03 0.0250 3.84e-10\n", "V_corr= -342.10458\n", "ibin= 3824 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -19.8 140.6 -0.010 0.088 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 8.97e+03 0.0248 9.44e-10\n", "V_corr= -352.58491\n", "ibin= 3825 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 57 3.5 164.3 -0.042 0.013 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.106 1.66e-09\n", "V_corr= -329.26859\n", "ibin= 3826 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -23.3 172.3 0.002 -0.056 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 3.22e+03 0.183 4.46e-10\n", "V_corr= -356.06108\n", "ibin= 3827 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -14.7 161.1 0.039 0.008 0.000 0.000 0.572 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0280 1.72e-09\n", "V_corr= -347.51883\n", "ibin= 3828 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -5.6 145.8 -0.015 0.028 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 9.71e+03 -0.00959 9.69e-10\n", "V_corr= -338.42319\n", "ibin= 3829 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -2.2 176.4 -0.067 0.049 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 0.203 1.86e-09\n", "V_corr= -334.99443\n", "ibin= 3830 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 7.5 113.8 -0.047 0.074 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.201 1.45e-09\n", "V_corr= -325.34150\n", "ibin= 3831 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -0.3 135.6 -0.041 0.065 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+03 0.630 2.51e-10\n", "V_corr= -333.07461\n", "ibin= 3832 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -19.1 196.1 -0.023 0.075 0.000 0.000 0.376 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 0.164 1.65e-09\n", "V_corr= -351.93101\n", "ibin= 3833 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -15.3 189.7 0.012 0.071 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0460 1.49e-09\n", "V_corr= -348.10719\n", "ibin= 3834 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 2.9 154.2 0.036 0.111 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0459 1.27e-09\n", "V_corr= -329.89521\n", "ibin= 3835 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 19.3 147.1 -0.035 0.094 0.000 0.000 0.660 NaN\n", "Ages, Metallicities, Weights:\n", " 3.58e+03 0.280 3.72e-10\n", "V_corr= -313.51883\n", "ibin= 3836 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 9.8 193.4 0.006 0.086 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.272 1.52e-09\n", "V_corr= -323.02304\n", "ibin= 3837 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 49.9 139.1 -0.011 0.092 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00113 1.20e-09\n", "V_corr= -282.88255\n", "ibin= 3838 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 19.6 153.4 -0.006 -0.000 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.226 9.90e-10\n", "V_corr= -313.16753\n", "ibin= 3839 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 197 -7.9 248.1 -0.072 0.128 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.565 1.72e-09\n", "V_corr= -340.74132\n", "ibin= 3840 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 33.6 104.9 -0.038 0.041 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.338 6.88e-10\n", "V_corr= -299.25333\n", "ibin= 3841 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 50.3 155.0 -0.004 0.097 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 5.68e+03 0.208 3.38e-10\n", "V_corr= -282.50359\n", "ibin= 3842 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -10.6 120.7 0.007 0.053 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.40e+03 0.0417 7.84e-11\n", "V_corr= -343.36971\n", "ibin= 3843 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 493 27.6 130.6 -0.010 0.093 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 0.689 1.21e-09\n", "V_corr= -305.16711\n", "ibin= 3844 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 8.5 144.3 0.017 0.045 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 2.07e+03 0.578 1.72e-10\n", "V_corr= -324.35743\n", "ibin= 3845 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 38.5 166.0 -0.022 0.096 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.654 9.72e-11\n", "V_corr= -294.25881\n", "ibin= 3846 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 56.6 194.6 -0.003 0.069 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.253 8.30e-10\n", "V_corr= -276.19303\n", "ibin= 3847 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 42.2 97.3 0.051 0.008 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 4.43e+03 -0.151 1.89e-10\n", "V_corr= -290.61286\n", "ibin= 3848 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 34.4 110.9 -0.026 0.041 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.323 4.97e-10\n", "V_corr= -298.38820\n", "ibin= 3849 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 57.6 65.1 -0.006 0.003 0.000 0.000 0.368 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+04 -0.635 3.43e-10\n", "V_corr= -275.18179\n", "ibin= 3850 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 215 84.9 199.0 -0.027 0.023 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.172 6.46e-10\n", "V_corr= -247.94999\n", "ibin= 3851 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 89.7 105.4 0.006 0.010 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.367 4.15e-10\n", "V_corr= -243.08769\n", "ibin= 3852 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 75.6 101.2 0.010 0.010 0.000 0.000 0.352 NaN\n", "Ages, Metallicities, Weights:\n", " 931. 0.0789 2.83e-11\n", "V_corr= -257.20612\n", "ibin= 3853 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 307 169.2 255.6 0.011 0.019 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.631 2.03e-10\n", "V_corr= -163.62811\n", "ibin= 3854 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 32.1 182.4 0.027 -0.018 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 8.49e+03 0.135 2.23e-10\n", "V_corr= -300.71124\n", "ibin= 3855 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 165 7.5 63.1 0.003 0.004 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 715. 0.132 1.70e-11\n", "V_corr= -325.29184\n", "ibin= 3856 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 295 56.0 229.6 -0.064 0.044 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 7.86e-10\n", "V_corr= -276.85487\n", "ibin= 3857 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 76.3 247.6 -0.008 -0.031 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 3.03e+03 0.261 8.83e-11\n", "V_corr= -256.51970\n", "ibin= 3858 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 60.3 144.9 -0.004 -0.018 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.363 2.94e-10\n", "V_corr= -272.52839\n", "ibin= 3859 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 101.2 109.5 0.011 0.012 0.000 0.000 0.420 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 -0.252 2.76e-11\n", "V_corr= -231.59989\n", "ibin= 3860 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 153.1 140.4 -0.001 -0.066 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 2.22e+03 -0.521 3.30e-11\n", "V_corr= -179.70708\n", "ibin= 3861 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 120 166.3 138.8 0.008 -0.006 0.000 0.000 0.380 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.14e+03 -0.293 1.65e-11\n", "V_corr= -166.53213\n", "ibin= 3862 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 136.4 116.5 0.033 -0.002 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 959. -0.119 1.44e-11\n", "V_corr= -196.37583\n", "ibin= 3863 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 261 63.0 283.3 0.015 0.001 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+04 0.446 3.45e-10\n", "V_corr= -269.79292\n", "ibin= 3864 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3865 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3866 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3867 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -39.6 126.9 0.014 0.031 0.000 0.000 1.360 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 -0.234 1.38e-10\n", "V_corr= -372.45777\n", "ibin= 3868 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 -76.4 149.0 0.068 0.032 0.000 0.000 0.986 NaN\n", "Ages, Metallicities, Weights:\n", " 3.24e+03 0.143 2.25e-10\n", "V_corr= -409.25700\n", "ibin= 3869 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -82.1 155.6 -0.013 0.062 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 3.76e+03 0.0625 2.48e-10\n", "V_corr= -414.89862\n", "ibin= 3870 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -60.3 177.1 0.064 0.034 0.000 0.000 0.813 NaN\n", "Ages, Metallicities, Weights:\n", " 1.81e+03 0.505 1.78e-10\n", "V_corr= -393.13177\n", "ibin= 3871 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -73.6 124.3 0.040 0.023 0.000 0.000 1.142 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 -0.354 5.98e-10\n", "V_corr= -406.36957\n", "ibin= 3872 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -52.9 128.2 0.044 0.036 0.000 0.000 1.342 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.0254 1.98e-10\n", "V_corr= -385.70382\n", "ibin= 3873 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -41.6 138.9 -0.100 -0.024 0.000 0.000 0.953 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.275 9.52e-10\n", "V_corr= -374.41286\n", "ibin= 3874 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 -53.9 132.0 -0.041 0.043 0.000 0.000 0.945 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.360 8.80e-10\n", "V_corr= -386.68849\n", "ibin= 3875 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -48.6 134.1 0.009 -0.024 0.000 0.000 0.918 NaN\n", "Ages, Metallicities, Weights:\n", " 3.44e+03 -0.0490 2.70e-10\n", "V_corr= -381.45139\n", "ibin= 3876 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -33.7 113.5 -0.004 0.065 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 7.52e+03 -0.0459 5.41e-10\n", "V_corr= -366.49900\n", "ibin= 3877 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -56.1 143.6 0.032 -0.011 0.000 0.000 0.623 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 -0.0669 7.47e-10\n", "V_corr= -388.88698\n", "ibin= 3878 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -45.8 168.1 0.047 0.049 0.000 0.000 0.512 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0107 1.27e-09\n", "V_corr= -378.65255\n", "ibin= 3879 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 68 -50.4 167.2 0.029 0.078 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0569 1.34e-09\n", "V_corr= -383.24078\n", "ibin= 3880 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -9.6 150.2 -0.021 0.038 0.000 0.000 1.488 NaN\n", "Ages, Metallicities, Weights:\n", " 5.31e+03 -0.407 3.58e-10\n", "V_corr= -342.42347\n", "ibin= 3881 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -31.7 119.8 -0.012 -0.023 0.000 0.000 1.030 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.350 1.15e-09\n", "V_corr= -364.53774\n", "ibin= 3882 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -32.8 165.0 -0.009 0.051 0.000 0.000 1.208 NaN\n", "Ages, Metallicities, Weights:\n", " 6.32e+03 0.118 6.69e-10\n", "V_corr= -365.58319\n", "ibin= 3883 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -33.4 158.2 0.001 0.086 0.000 0.000 0.700 NaN\n", "Ages, Metallicities, Weights:\n", " 4.35e+03 0.319 5.18e-10\n", "V_corr= -366.21722\n", "ibin= 3884 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 -48.4 137.9 0.003 0.112 0.000 0.000 0.822 NaN\n", "Ages, Metallicities, Weights:\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 1.62e+03 0.516 2.34e-10\n", "V_corr= -381.21510\n", "ibin= 3885 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -43.8 130.3 0.015 0.072 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.118 1.46e-09\n", "V_corr= -376.59591\n", "ibin= 3886 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -37.8 150.3 -0.049 0.052 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 9.10e+03 0.0152 8.95e-10\n", "V_corr= -370.59019\n", "ibin= 3887 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -16.5 132.1 0.013 0.050 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 6.50e+03 -0.0566 6.52e-10\n", "V_corr= -349.28863\n", "ibin= 3888 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 91 -27.0 127.3 0.026 0.044 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.327 1.34e-09\n", "V_corr= -359.85225\n", "ibin= 3889 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -37.0 139.7 -0.012 -0.024 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 0.166 3.71e-10\n", "V_corr= -369.76059\n", "ibin= 3890 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -38.7 173.9 -0.035 0.071 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.152 1.81e-09\n", "V_corr= -371.54315\n", "ibin= 3891 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -6.3 119.7 -0.009 0.007 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 4.71e+03 -0.0231 5.10e-10\n", "V_corr= -339.10342\n", "ibin= 3892 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -19.3 139.3 -0.006 0.003 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 -0.00560 1.37e-09\n", "V_corr= -352.09753\n", "ibin= 3893 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -8.2 138.4 0.007 -0.012 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.403 1.18e-09\n", "V_corr= -341.03739\n", "ibin= 3894 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -9.4 114.9 -0.015 0.075 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 1.43e-09\n", "V_corr= -342.15963\n", "ibin= 3895 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -0.8 149.3 -0.027 0.031 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.159 1.47e-09\n", "V_corr= -333.60887\n", "ibin= 3896 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -34.1 153.0 -0.017 0.015 0.000 0.000 0.536 NaN\n", "Ages, Metallicities, Weights:\n", " 6.52e+03 0.0629 7.25e-10\n", "V_corr= -366.90864\n", "ibin= 3897 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 5.9 158.9 0.037 0.024 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 6.94e+03 0.126 7.89e-10\n", "V_corr= -326.88594\n", "ibin= 3898 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 217 -10.1 181.3 0.058 0.093 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 0.584 2.90e-09\n", "V_corr= -342.89754\n", "ibin= 3899 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 110 -13.1 154.1 -0.011 0.096 0.000 0.000 0.643 NaN\n", "Ages, Metallicities, Weights:\n", " 8.19e+03 0.110 8.68e-10\n", "V_corr= -345.91438\n", "ibin= 3900 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 6.5 139.2 -0.042 0.040 0.000 0.000 0.793 NaN\n", "Ages, Metallicities, Weights:\n", " 6.49e+03 -0.0923 5.86e-10\n", "V_corr= -326.32080\n", "ibin= 3901 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 11.3 170.6 0.001 -0.033 0.000 0.000 0.740 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.327 1.17e-09\n", "V_corr= -321.53359\n", "ibin= 3902 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -0.9 155.8 0.065 0.003 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.221 1.18e-09\n", "V_corr= -333.69125\n", "ibin= 3903 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 180 -9.1 180.0 -0.003 0.025 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.107 1.42e-09\n", "V_corr= -341.94818\n", "ibin= 3904 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 18.3 146.6 -0.010 0.014 0.000 0.000 0.498 NaN\n", "Ages, Metallicities, Weights:\n", " 5.75e+03 -0.0461 4.70e-10\n", "V_corr= -314.46110\n", "ibin= 3905 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 33.8 136.8 -0.082 0.042 0.000 0.000 0.278 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.123 1.12e-09\n", "V_corr= -299.04768\n", "ibin= 3906 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 35.5 157.4 -0.014 0.061 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.153 1.03e-09\n", "V_corr= -297.33949\n", "ibin= 3907 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 38.3 151.2 0.022 0.012 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 3.02e+03 -0.0258 1.97e-10\n", "V_corr= -294.51786\n", "ibin= 3908 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 32.2 149.5 -0.044 0.010 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.0829 1.46e-10\n", "V_corr= -300.55897\n", "ibin= 3909 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 38.9 129.3 -0.010 0.074 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.332 6.60e-10\n", "V_corr= -293.87961\n", "ibin= 3910 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 53.3 228.9 0.070 0.038 0.000 0.000 0.917 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.327 9.63e-10\n", "V_corr= -279.55564\n", "ibin= 3911 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 55.2 161.6 0.043 0.013 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.132 1.36e-10\n", "V_corr= -277.56144\n", "ibin= 3912 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 53.5 203.0 0.026 0.072 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+03 0.526 1.18e-10\n", "V_corr= -279.35348\n", "ibin= 3913 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 16.0 74.5 -0.013 0.012 0.000 0.000 0.272 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.563 4.70e-10\n", "V_corr= -316.77669\n", "ibin= 3914 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 41.2 104.4 0.048 0.030 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.414 5.08e-10\n", "V_corr= -291.62369\n", "ibin= 3915 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 54.5 91.7 -0.028 0.023 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+03 -0.329 5.35e-11\n", "V_corr= -278.30324\n", "ibin= 3916 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 56.6 101.6 0.016 0.034 0.000 0.000 0.545 NaN\n", "Ages, Metallicities, Weights:\n", " 4.29e+03 -0.259 1.46e-10\n", "V_corr= -276.17522\n", "ibin= 3917 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 36.0 126.3 0.019 0.025 0.000 0.000 0.334 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+03 0.142 7.66e-11\n", "V_corr= -296.77138\n", "ibin= 3918 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 62.1 128.3 0.064 0.049 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.302 4.89e-10\n", "V_corr= -270.75777\n", "ibin= 3919 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 374 51.6 190.1 -0.047 0.019 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.652 6.18e-11\n", "V_corr= -281.25693\n", "ibin= 3920 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 142 35.3 191.6 -0.069 0.025 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 2.66e+03 0.608 1.38e-10\n", "V_corr= -297.48783\n", "ibin= 3921 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 135.0 104.8 -0.025 -0.005 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.786 2.22e-10\n", "V_corr= -197.76065\n", "ibin= 3922 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 60.2 161.6 0.041 0.048 0.000 0.000 0.361 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.126 2.84e-10\n", "V_corr= -272.57101\n", "ibin= 3923 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 97.3 163.4 0.013 -0.036 0.000 0.000 0.462 NaN\n", "Ages, Metallicities, Weights:\n", " 3.54e+03 0.239 1.05e-10\n", "V_corr= -235.51931\n", "ibin= 3924 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 293 102.4 187.3 0.063 0.000 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 8.05e-10\n", "V_corr= -230.42008\n", "ibin= 3925 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 83.4 195.0 0.004 -0.004 0.000 0.000 0.580 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0522 3.15e-10\n", "V_corr= -249.42595\n", "ibin= 3926 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 52.9 216.2 -0.020 -0.020 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.460 2.42e-10\n", "V_corr= -279.90467\n", "ibin= 3927 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 258 110.2 315.4 0.008 0.047 0.000 0.000 0.614 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.138 3.64e-10\n", "V_corr= -222.63006\n", "ibin= 3928 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 101.8 87.9 0.007 -0.008 0.000 0.000 0.620 NaN\n", "Ages, Metallicities, Weights:\n", " 4.14e+03 -0.381 6.54e-11\n", "V_corr= -231.01765\n", "ibin= 3929 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 197 56.1 172.8 0.051 0.001 0.000 0.000 0.380 NaN\n", "Ages, Metallicities, Weights:\n", " 3.12e+03 -0.0431 5.59e-11\n", "V_corr= -276.70297\n", "ibin= 3930 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 75.4 147.9 0.011 -0.006 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 -0.0407 3.88e-11\n", "V_corr= -257.37614\n", "ibin= 3931 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 41.2 188.3 0.006 0.006 0.000 0.000 0.419 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00655 2.87e-10\n", "V_corr= -291.61543\n", "ibin= 3932 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 69.1 207.0 0.032 -0.002 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+03 -0.142 2.79e-11\n", "V_corr= -263.75600\n", "ibin= 3933 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3934 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3935 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 3936 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -43.4 162.3 0.030 0.076 0.000 0.000 1.112 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.318 5.82e-10\n", "V_corr= -376.24139\n", "ibin= 3937 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -51.9 116.3 -0.042 0.032 0.000 0.000 0.807 NaN\n", "Ages, Metallicities, Weights:\n", " 1.25e+03 0.689 1.33e-10\n", "V_corr= -384.66408\n", "ibin= 3938 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -39.9 139.5 0.070 0.022 0.000 0.000 1.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.226 8.32e-10\n", "V_corr= -372.70463\n", "ibin= 3939 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -21.1 113.1 -0.014 0.027 0.000 0.000 1.154 NaN\n", "Ages, Metallicities, Weights:\n", " 1.49e+04 -0.280 6.41e-10\n", "V_corr= -353.88028\n", "ibin= 3940 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -51.7 98.8 -0.022 0.009 0.000 0.000 0.676 NaN\n", "Ages, Metallicities, Weights:\n", " 3.21e+03 -0.167 1.98e-10\n", "V_corr= -384.53132\n", "ibin= 3941 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -60.6 164.5 0.061 0.087 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 6.11e+03 0.242 4.76e-10\n", "V_corr= -393.38934\n", "ibin= 3942 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -59.3 142.1 0.023 -0.042 0.000 0.000 0.839 NaN\n", "Ages, Metallicities, Weights:\n", " 6.92e+03 -0.0761 4.66e-10\n", "V_corr= -392.11025\n", "ibin= 3943 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -58.1 141.8 -0.060 -0.011 0.000 0.000 0.867 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.184 1.02e-09\n", "V_corr= -390.86055\n", "ibin= 3944 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -23.7 102.5 -0.013 0.018 0.000 0.000 0.970 NaN\n", "Ages, Metallicities, Weights:\n", " 5.52e+03 -0.319 3.33e-10\n", "V_corr= -356.53911\n", "ibin= 3945 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -55.7 130.1 0.033 -0.029 0.000 0.000 0.812 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.308 1.00e-09\n", "V_corr= -388.47814\n", "ibin= 3946 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -44.6 147.9 0.024 0.053 0.000 0.000 1.110 NaN\n", "Ages, Metallicities, Weights:\n", " 5.93e+03 -0.0309 4.57e-10\n", "V_corr= -377.41798\n", "ibin= 3947 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -30.9 136.9 -0.004 0.023 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.192 1.12e-09\n", "V_corr= -363.68047\n", "ibin= 3948 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -49.5 167.3 0.016 0.022 0.000 0.000 0.998 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0892 1.23e-09\n", "V_corr= -382.30412\n", "ibin= 3949 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -38.8 156.7 0.055 -0.012 0.000 0.000 0.807 NaN\n", "Ages, Metallicities, Weights:\n", " 2.70e+03 0.202 2.85e-10\n", "V_corr= -371.59194\n", "ibin= 3950 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -45.4 171.5 0.079 0.079 0.000 0.000 0.678 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0404 1.39e-09\n", "V_corr= -378.17276\n", "ibin= 3951 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -45.0 166.5 -0.036 0.064 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00730 1.39e-09\n", "V_corr= -377.80413\n", "ibin= 3952 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 -68.6 143.0 -0.013 0.035 0.000 0.000 0.682 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+03 0.460 2.45e-10\n", "V_corr= -401.43968\n", "ibin= 3953 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -24.1 172.3 0.025 0.066 0.000 0.000 0.724 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.130 1.34e-09\n", "V_corr= -356.87528\n", "ibin= 3954 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 -51.0 124.3 0.001 -0.016 0.000 0.000 0.869 NaN\n", "Ages, Metallicities, Weights:\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 1.21e+03 0.111 1.24e-10\n", "V_corr= -383.78708\n", "ibin= 3955 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -39.9 143.2 0.012 0.001 0.000 0.000 0.798 NaN\n", "Ages, Metallicities, Weights:\n", " 7.49e+03 -0.128 6.52e-10\n", "V_corr= -372.72572\n", "ibin= 3956 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -22.2 173.2 0.071 0.050 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0715 1.47e-09\n", "V_corr= -354.97843\n", "ibin= 3957 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -42.0 157.1 0.073 0.010 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 9.22e+03 0.108 9.93e-10\n", "V_corr= -374.81464\n", "ibin= 3958 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -12.7 115.2 -0.087 0.019 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.248 1.36e-09\n", "V_corr= -345.48848\n", "ibin= 3959 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -15.6 128.1 -0.038 0.002 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 6.32e+03 -0.0921 6.13e-10\n", "V_corr= -348.43545\n", "ibin= 3960 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -33.0 146.3 -0.005 0.058 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 1.48e-09\n", "V_corr= -365.82337\n", "ibin= 3961 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 -35.4 151.6 0.003 0.038 0.000 0.000 0.361 NaN\n", "Ages, Metallicities, Weights:\n", " 5.57e+03 0.339 7.49e-10\n", "V_corr= -368.18972\n", "ibin= 3962 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -22.4 143.1 -0.029 0.077 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.116 1.48e-09\n", "V_corr= -355.21557\n", "ibin= 3963 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -24.0 153.4 -0.037 0.028 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.14e+04 0.115 1.21e-09\n", "V_corr= -356.81075\n", "ibin= 3964 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -22.5 142.3 0.008 0.083 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 7.51e+03 0.0902 7.93e-10\n", "V_corr= -355.29854\n", "ibin= 3965 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -9.8 160.6 -0.020 0.071 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+03 0.481 2.80e-10\n", "V_corr= -342.56334\n", "ibin= 3966 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -2.8 162.6 -0.004 -0.018 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 1.48e-09\n", "V_corr= -335.56103\n", "ibin= 3967 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -24.7 172.6 0.023 0.041 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 3.47e+03 0.474 5.02e-10\n", "V_corr= -357.50895\n", "ibin= 3968 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 9.7 157.2 0.004 0.113 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 5.91e+03 0.233 6.34e-10\n", "V_corr= -323.06354\n", "ibin= 3969 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 0.8 142.6 0.009 0.051 0.000 0.000 0.676 NaN\n", "Ages, Metallicities, Weights:\n", " 5.72e+03 -0.0171 5.19e-10\n", "V_corr= -331.95911\n", "ibin= 3970 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -11.4 151.8 0.033 0.063 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 4.56e+03 0.0657 4.24e-10\n", "V_corr= -344.20199\n", "ibin= 3971 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 20.9 177.6 -0.020 0.041 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 3.07e+03 0.615 4.41e-10\n", "V_corr= -311.94823\n", "ibin= 3972 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 15.0 155.2 -0.002 0.048 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 5.46e+03 0.150 4.95e-10\n", "V_corr= -317.83239\n", "ibin= 3973 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 9.4 144.0 0.001 0.043 0.000 0.000 0.391 NaN\n", "Ages, Metallicities, Weights:\n", " 7.61e+03 -0.0149 5.71e-10\n", "V_corr= -323.40551\n", "ibin= 3974 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 27.0 164.8 -0.040 0.070 0.000 0.000 0.358 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.132 1.23e-09\n", "V_corr= -305.81348\n", "ibin= 3975 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 20.4 122.1 0.066 0.040 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.131 9.34e-10\n", "V_corr= -312.45296\n", "ibin= 3976 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 192 39.4 102.1 0.013 0.042 0.000 0.000 0.707 NaN\n", "Ages, Metallicities, Weights:\n", " 5.39e+03 -0.162 2.87e-10\n", "V_corr= -293.42035\n", "ibin= 3977 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 28.2 188.4 0.064 0.014 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0297 7.61e-10\n", "V_corr= -304.62101\n", "ibin= 3978 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 70.6 93.0 -0.021 0.041 0.000 0.000 0.425 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.280 6.37e-10\n", "V_corr= -262.17942\n", "ibin= 3979 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 6.0 140.5 0.024 0.021 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.573 9.03e-11\n", "V_corr= -326.84277\n", "ibin= 3980 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 30.1 212.0 0.076 0.030 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0689 7.39e-10\n", "V_corr= -302.72446\n", "ibin= 3981 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 0.3 201.3 -0.008 0.098 0.000 0.000 0.620 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.388 9.90e-10\n", "V_corr= -332.52549\n", "ibin= 3982 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 31.1 110.9 -0.014 0.033 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.628 3.96e-10\n", "V_corr= -301.69290\n", "ibin= 3983 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 74.4 159.0 0.080 0.093 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 2.81e+03 0.274 1.26e-10\n", "V_corr= -258.40889\n", "ibin= 3984 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 2.6 136.8 -0.006 -0.023 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+03 -0.215 6.13e-11\n", "V_corr= -330.21751\n", "ibin= 3985 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 26.7 56.5 -0.000 -0.002 0.000 0.000 0.609 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 -0.725 4.63e-11\n", "V_corr= -306.06848\n", "ibin= 3986 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 77.6 141.2 0.020 0.011 0.000 0.000 0.533 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+04 -0.806 2.19e-10\n", "V_corr= -255.22403\n", "ibin= 3987 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 60.9 83.7 0.017 -0.008 0.000 0.000 0.494 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.674 3.05e-10\n", "V_corr= -271.93776\n", "ibin= 3988 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 58.7 134.0 0.017 0.026 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 1.21e-09\n", "V_corr= -274.12884\n", "ibin= 3989 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 75.3 40.7 -0.000 -0.001 0.000 0.000 0.841 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.848 2.15e-10\n", "V_corr= -257.48862\n", "ibin= 3990 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 52.9 80.3 0.018 -0.009 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.779 2.16e-10\n", "V_corr= -279.87994\n", "ibin= 3991 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 63.8 189.2 0.007 0.022 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 2.15e+03 0.0519 5.93e-11\n", "V_corr= -268.98506\n", "ibin= 3992 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 86.6 77.5 0.018 0.004 0.000 0.000 0.594 NaN\n", "Ages, Metallicities, Weights:\n", " 984. 0.129 2.20e-11\n", "V_corr= -246.16762\n", "ibin= 3993 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 80.2 77.5 0.019 -0.002 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.889 1.36e-10\n", "V_corr= -252.57249\n", "ibin= 3994 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 105.4 158.6 0.010 0.033 0.000 0.000 0.225 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.222 2.62e-10\n", "V_corr= -227.44494\n", "ibin= 3995 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 118.7 164.4 -0.019 -0.018 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.611 1.74e-10\n", "V_corr= -214.14150\n", "ibin= 3996 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 60.9 234.4 0.031 -0.071 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.0893 2.53e-10\n", "V_corr= -271.95280\n", "ibin= 3997 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 595 157.0 242.2 0.045 0.049 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 4.23e+03 0.689 1.78e-10\n", "V_corr= -175.77161\n", "ibin= 3998 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 103.5 154.4 0.035 -0.038 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.379 2.72e-10\n", "V_corr= -229.34139\n", "ibin= 3999 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 128.3 160.6 -0.030 -0.018 0.000 0.000 0.314 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.717 1.91e-10\n", "V_corr= -204.52371\n", "ibin= 4000 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 113.3 112.8 0.024 -0.010 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.706 1.91e-10\n", "V_corr= -219.51390\n", "ibin= 4001 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 113.3 212.2 0.016 -0.008 0.000 0.000 0.491 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 9.22e+03 0.0742 1.81e-10\n", "V_corr= -219.46504\n", "ibin= 4002 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4003 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4004 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4005 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -60.4 146.2 0.040 0.022 0.000 0.000 1.172 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.271 6.28e-10\n", "V_corr= -393.17281\n", "ibin= 4006 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 176 -49.1 144.4 -0.023 0.044 0.000 0.000 1.220 NaN\n", "Ages, Metallicities, Weights:\n", " 4.19e+03 0.110 2.68e-10\n", "V_corr= -381.95733\n", "ibin= 4007 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -47.3 120.3 -0.074 0.078 0.000 0.000 0.978 NaN\n", "Ages, Metallicities, Weights:\n", " 3.04e+03 -0.198 1.66e-10\n", "V_corr= -380.13511\n", "ibin= 4008 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -55.7 125.5 0.001 0.023 0.000 0.000 0.930 NaN\n", "Ages, Metallicities, Weights:\n", " 2.72e+03 -0.0970 1.69e-10\n", "V_corr= -388.55107\n", "ibin= 4009 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -95.8 153.8 0.040 0.016 0.000 0.000 0.940 NaN\n", "Ages, Metallicities, Weights:\n", " 2.68e+03 0.211 2.12e-10\n", "V_corr= -428.59395\n", "ibin= 4010 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -46.4 180.9 0.083 0.114 0.000 0.000 1.219 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.481 1.57e-09\n", "V_corr= -379.16656\n", "ibin= 4011 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -81.4 147.8 0.032 0.032 0.000 0.000 1.273 NaN\n", "Ages, Metallicities, Weights:\n", " 2.95e+03 0.0418 2.16e-10\n", "V_corr= -414.23841\n", "ibin= 4012 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -50.3 137.3 -0.040 0.023 0.000 0.000 1.094 NaN\n", "Ages, Metallicities, Weights:\n", " 4.97e+03 -0.298 2.96e-10\n", "V_corr= -383.09486\n", "ibin= 4013 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 -42.3 156.0 0.088 0.021 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.236 9.73e-10\n", "V_corr= -375.14167\n", "ibin= 4014 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -39.5 129.6 -0.021 0.018 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 1.00e-09\n", "V_corr= -372.32312\n", "ibin= 4015 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -48.6 155.6 0.069 -0.005 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.228 1.07e-09\n", "V_corr= -381.43358\n", "ibin= 4016 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -28.7 123.3 0.002 0.064 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.310 9.74e-10\n", "V_corr= -361.50950\n", "ibin= 4017 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -54.1 108.6 -0.013 0.034 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.291 8.73e-10\n", "V_corr= -386.88593\n", "ibin= 4018 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 168 -18.6 173.7 0.052 -0.012 0.000 0.000 1.169 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.104 1.25e-09\n", "V_corr= -351.36799\n", "ibin= 4019 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -16.5 138.1 -0.006 -0.014 0.000 0.000 0.615 NaN\n", "Ages, Metallicities, Weights:\n", " 5.56e+03 -0.149 4.55e-10\n", "V_corr= -349.33914\n", "ibin= 4020 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 202 -33.6 166.5 -0.045 0.043 0.000 0.000 1.032 NaN\n", "Ages, Metallicities, Weights:\n", " 5.07e+03 0.330 5.70e-10\n", "V_corr= -366.38546\n", "ibin= 4021 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -16.6 142.2 -0.062 0.021 0.000 0.000 0.610 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.258 1.19e-09\n", "V_corr= -349.45120\n", "ibin= 4022 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -30.9 152.5 -0.007 0.089 0.000 0.000 0.449 NaN\n", "Ages, Metallicities, Weights:\n", " 2.17e+03 0.513 3.05e-10\n", "V_corr= -363.67429\n", "ibin= 4023 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -50.7 151.4 0.058 0.016 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 0.613 2.19e-10\n", "V_corr= -383.52973\n", "ibin= 4024 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -21.1 154.0 0.018 0.110 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 8.83e+03 0.119 8.72e-10\n", "V_corr= -353.90019\n", "ibin= 4025 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -49.6 133.1 -0.006 -0.018 0.000 0.000 0.333 NaN\n", "Ages, Metallicities, Weights:\n", " 3.83e+03 -0.0511 3.81e-10\n", "V_corr= -382.42642\n", "ibin= 4026 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -45.5 174.2 -0.020 0.034 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.00687 1.49e-09\n", "V_corr= -378.28931\n", "ibin= 4027 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 112 -39.4 164.3 -0.050 0.025 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0215 1.49e-09\n", "V_corr= -372.22686\n", "ibin= 4028 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -50.8 159.2 -0.067 0.026 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 7.51e+03 0.121 8.27e-10\n", "V_corr= -383.62869\n", "ibin= 4029 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 -26.2 144.7 -0.007 0.101 0.000 0.000 0.595 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0115 1.47e-09\n", "V_corr= -359.01394\n", "ibin= 4030 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -38.7 171.9 0.015 0.021 0.000 0.000 0.701 NaN\n", "Ages, Metallicities, Weights:\n", " 2.85e+03 0.447 4.14e-10\n", "V_corr= -371.52501\n", "ibin= 4031 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 123 -27.2 140.7 0.036 0.040 0.000 0.000 0.618 NaN\n", "Ages, Metallicities, Weights:\n", " 2.80e+03 0.218 3.40e-10\n", "V_corr= -360.01768\n", "ibin= 4032 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -31.2 158.9 0.015 -0.048 0.000 0.000 0.622 NaN\n", "Ages, Metallicities, Weights:\n", " 2.46e+03 0.0804 2.82e-10\n", "V_corr= -364.00706\n", "ibin= 4033 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 0.7 131.6 -0.022 0.015 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.225 1.32e-09\n", "V_corr= -332.06344\n", "ibin= 4034 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -30.4 172.5 -0.064 0.046 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 7.02e+03 0.160 7.56e-10\n", "V_corr= -363.22834\n", "ibin= 4035 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 193 -0.4 156.9 -0.071 0.090 0.000 0.000 0.340 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+04 0.0415 1.09e-09\n", "V_corr= -333.18673\n", "ibin= 4036 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -22.2 188.8 -0.005 0.057 0.000 0.000 0.593 NaN\n", "Ages, Metallicities, Weights:\n", " 3.49e+03 0.327 4.08e-10\n", "V_corr= -354.98379\n", "ibin= 4037 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 21.7 159.6 0.008 0.072 0.000 0.000 0.738 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 1.20e-09\n", "V_corr= -311.06574\n", "ibin= 4038 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 8.6 128.4 -0.013 0.049 0.000 0.000 0.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.45e+04 -0.404 7.61e-10\n", "V_corr= -324.16125\n", "ibin= 4039 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -19.0 143.9 -0.060 0.046 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.214 1.12e-09\n", "V_corr= -351.79034\n", "ibin= 4040 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 0.4 164.2 -0.014 0.039 0.000 0.000 0.371 NaN\n", "Ages, Metallicities, Weights:\n", " 3.11e+03 0.564 4.13e-10\n", "V_corr= -332.36902\n", "ibin= 4041 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 134 -2.2 191.2 0.061 0.074 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 3.81e+03 0.402 3.84e-10\n", "V_corr= -334.96917\n", "ibin= 4042 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 5.1 145.9 0.007 0.069 0.000 0.000 0.337 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+03 0.514 1.71e-10\n", "V_corr= -327.70953\n", "ibin= 4043 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -6.4 154.3 0.020 0.062 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.216 9.01e-10\n", "V_corr= -339.20346\n", "ibin= 4044 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 55.9 164.3 0.006 0.076 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0841 8.47e-10\n", "V_corr= -276.91484\n", "ibin= 4045 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 80.8 188.1 0.003 0.075 0.000 0.000 0.518 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0949 8.46e-10\n", "V_corr= -251.95939\n", "ibin= 4046 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 43.0 209.7 0.043 -0.032 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.72e+04 0.145 8.44e-10\n", "V_corr= -289.83718\n", "ibin= 4047 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 42.4 115.1 0.012 0.020 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.446 5.55e-10\n", "V_corr= -290.35907\n", "ibin= 4048 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 16.3 150.7 0.003 0.009 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.259 6.52e-10\n", "V_corr= -316.55797\n", "ibin= 4049 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 5.9 127.0 -0.025 0.018 0.000 0.000 0.364 NaN\n", "Ages, Metallicities, Weights:\n", " 812. 0.647 5.98e-11\n", "V_corr= -326.88224\n", "ibin= 4050 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 329 48.8 188.0 0.044 0.118 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.200 7.39e-10\n", "V_corr= -284.02059\n", "ibin= 4051 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 53.7 133.9 0.023 0.048 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 2.48e+03 -0.135 9.30e-11\n", "V_corr= -279.11310\n", "ibin= 4052 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 39.2 138.2 -0.005 0.043 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0631 4.79e-10\n", "V_corr= -293.64774\n", "ibin= 4053 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 80.1 156.7 0.085 0.030 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.333 4.35e-10\n", "V_corr= -252.71163\n", "ibin= 4054 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 49.7 115.8 -0.003 0.035 0.000 0.000 0.398 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.316 3.82e-10\n", "V_corr= -283.05944\n", "ibin= 4055 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 61.6 238.9 0.016 0.020 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 0.411 5.86e-10\n", "V_corr= -271.25180\n", "ibin= 4056 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 33.8 108.6 -0.007 0.001 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+04 -0.333 3.41e-10\n", "V_corr= -298.96467\n", "ibin= 4057 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 88.2 155.6 0.012 0.038 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.449 3.04e-10\n", "V_corr= -244.58795\n", "ibin= 4058 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 67.0 87.7 0.022 0.015 0.000 0.000 0.628 NaN\n", "Ages, Metallicities, Weights:\n", " 5.16e+03 -0.370 1.07e-10\n", "V_corr= -265.76644\n", "ibin= 4059 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 174 70.4 121.0 -0.032 0.013 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.557 2.09e-10\n", "V_corr= -262.39612\n", "ibin= 4060 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 98.7 161.0 -0.017 -0.015 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 -0.762 3.94e-11\n", "V_corr= -234.06042\n", "ibin= 4061 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 24.7 181.1 0.025 -0.033 0.000 0.000 0.557 NaN\n", "Ages, Metallicities, Weights:\n", " 679. 0.552 2.10e-11\n", "V_corr= -308.15334\n", "ibin= 4062 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 108.0 178.9 -0.030 -0.056 0.000 0.000 0.352 NaN\n", "Ages, Metallicities, Weights:\n", " 5.86e+03 -0.0388 1.24e-10\n", "V_corr= -224.83893\n", "ibin= 4063 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 95.3 158.7 -0.016 0.011 0.000 0.000 0.403 NaN\n", "Ages, Metallicities, Weights:\n", " 1.33e+03 0.689 4.54e-11\n", "V_corr= -237.46339\n", "ibin= 4064 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 108.6 254.8 -0.009 0.032 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0216 2.84e-10\n", "V_corr= -224.18276\n", "ibin= 4065 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 302 23.5 250.4 -0.010 0.021 0.000 0.000 0.562 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0289 3.10e-10\n", "V_corr= -309.34820\n", "ibin= 4066 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 66.1 74.0 -0.003 0.001 0.000 0.000 0.330 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.493 2.48e-10\n", "V_corr= -266.72690\n", "ibin= 4067 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 55.6 148.1 0.020 0.012 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.603 2.31e-10\n", "V_corr= -277.22486\n", "ibin= 4068 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 77.6 148.6 0.021 0.039 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.570 2.21e-10\n", "V_corr= -255.21115\n", "ibin= 4069 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 153 157.0 173.4 0.016 -0.046 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 2.19e+03 -0.349 4.55e-11\n", "V_corr= -175.81941\n", "ibin= 4070 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 177.7 210.2 0.011 -0.038 0.000 0.000 0.502 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.283 2.70e-10\n", "V_corr= -155.08315\n", "ibin= 4071 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4072 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4073 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4074 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 -48.0 124.5 0.031 0.052 0.000 0.000 1.116 NaN\n", "Ages, Metallicities, Weights:\n", " 2.39e+03 0.0817 1.52e-10\n", "V_corr= -380.76616\n", "ibin= 4075 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -66.7 153.9 -0.004 0.016 0.000 0.000 0.945 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0794 8.74e-10\n", "V_corr= -399.49472\n", "ibin= 4076 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -69.4 204.4 0.065 0.052 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 4.14e+03 0.477 3.70e-10\n", "V_corr= -402.19949\n", "ibin= 4077 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -49.0 105.4 -0.043 -0.009 0.000 0.000 1.107 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+03 -0.173 1.09e-10\n", "V_corr= -381.80950\n", "ibin= 4078 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -66.9 164.0 0.008 0.090 0.000 0.000 0.924 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+03 0.554 1.89e-10\n", "V_corr= -399.74540\n", "ibin= 4079 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -76.0 130.7 -0.066 0.020 0.000 0.000 0.846 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.269 8.51e-10\n", "V_corr= -408.79545\n", "ibin= 4080 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -57.5 155.3 0.002 0.075 0.000 0.000 0.893 NaN\n", "Ages, Metallicities, Weights:\n", " 3.22e+03 0.381 2.84e-10\n", "V_corr= -390.31448\n", "ibin= 4081 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -28.6 116.4 -0.007 0.019 0.000 0.000 1.225 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.432 7.79e-10\n", "V_corr= -361.43480\n", "ibin= 4082 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -59.5 184.5 -0.027 0.047 0.000 0.000 0.658 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 0.634 2.98e-10\n", "V_corr= -392.32252\n", "ibin= 4083 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -73.9 140.3 -0.068 0.068 0.000 0.000 1.232 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+03 0.584 1.66e-10\n", "V_corr= -406.72858\n", "ibin= 4084 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -62.0 142.9 -0.110 0.083 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 2.46e+03 0.450 2.65e-10\n", "V_corr= -394.78587\n", "ibin= 4085 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -45.4 152.8 0.038 0.069 0.000 0.000 0.664 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.166 1.09e-09\n", "V_corr= -378.23630\n", "ibin= 4086 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -54.1 151.3 -0.028 0.070 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0537 1.17e-09\n", "V_corr= -386.95647\n", "ibin= 4087 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -40.1 170.0 0.054 0.017 0.000 0.000 0.990 NaN\n", "Ages, Metallicities, Weights:\n", " 5.39e+03 0.0313 4.72e-10\n", "V_corr= -372.86956\n", "ibin= 4088 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -35.0 140.5 0.002 0.033 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.409 9.68e-10\n", "V_corr= -367.80802\n", "ibin= 4089 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -45.1 133.3 -0.070 0.039 0.000 0.000 0.766 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 0.423 2.48e-10\n", "V_corr= -377.95719\n", "ibin= 4090 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -20.9 150.1 -0.069 0.083 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 0.417 3.11e-10\n", "V_corr= -353.74660\n", "ibin= 4091 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -23.6 165.3 -0.002 0.077 0.000 0.000 0.718 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.102 1.44e-09\n", "V_corr= -356.42451\n", "ibin= 4092 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 -33.3 148.7 0.015 -0.023 0.000 0.000 0.723 NaN\n", "Ages, Metallicities, Weights:\n", " 3.50e+03 0.00940 3.29e-10\n", "V_corr= -366.07997\n", "ibin= 4093 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 -30.0 166.1 0.042 0.105 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 3.18e+03 0.451 3.99e-10\n", "V_corr= -362.82520\n", "ibin= 4094 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -56.0 174.9 0.007 0.072 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 1.12e+04 0.128 1.05e-09\n", "V_corr= -388.82926\n", "ibin= 4095 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -20.5 170.7 0.013 0.012 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0407 1.44e-09\n", "V_corr= -353.33387\n", "ibin= 4096 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -44.7 170.3 0.028 0.059 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.110 1.34e-09\n", "V_corr= -377.47150\n", "ibin= 4097 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -35.8 167.0 0.035 0.062 0.000 0.000 0.485 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0523 1.42e-09\n", "V_corr= -368.56126\n", "ibin= 4098 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -32.9 121.3 0.034 0.065 0.000 0.000 0.508 NaN\n", "Ages, Metallicities, Weights:\n", " 5.40e+03 -0.150 4.71e-10\n", "V_corr= -365.73295\n", "ibin= 4099 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -20.0 108.4 -0.063 0.031 0.000 0.000 0.369 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.260 1.35e-09\n", "V_corr= -352.83175\n", "ibin= 4100 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -10.5 155.9 0.046 0.086 0.000 0.000 0.529 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.105 1.17e-09\n", "V_corr= -343.27465\n", "ibin= 4101 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 79 -21.8 173.6 0.028 -0.014 0.000 0.000 0.340 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0625 1.57e-09\n", "V_corr= -354.61308\n", "ibin= 4102 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -17.4 139.4 -0.035 0.104 0.000 0.000 0.391 NaN\n", "Ages, Metallicities, Weights:\n", " 8.89e+03 -0.0748 6.92e-10\n", "V_corr= -350.21128\n", "ibin= 4103 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -5.7 119.4 0.002 0.050 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 -0.217 7.33e-10\n", "V_corr= -338.53590\n", "ibin= 4104 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -27.9 192.6 -0.031 0.025 0.000 0.000 0.455 NaN\n", "Ages, Metallicities, Weights:\n", " 1.15e+04 0.0869 9.77e-10\n", "V_corr= -360.73489\n", "ibin= 4105 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -14.3 127.2 -0.022 0.006 0.000 0.000 0.602 NaN\n", "Ages, Metallicities, Weights:\n", " 1.96e+04 -0.197 1.19e-09\n", "V_corr= -347.08196\n", "ibin= 4106 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -21.1 173.1 -0.001 0.070 0.000 0.000 0.374 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.157 1.18e-09\n", "V_corr= -353.86839\n", "ibin= 4107 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -5.6 138.9 -0.017 0.077 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0763 1.14e-09\n", "V_corr= -338.44904\n", "ibin= 4108 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 18.1 135.5 -0.059 0.056 0.000 0.000 0.386 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 -0.191 6.49e-10\n", "V_corr= -314.74670\n", "ibin= 4109 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 30.3 141.7 -0.009 0.005 0.000 0.000 0.342 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0772 1.11e-09\n", "V_corr= -302.47119\n", "ibin= 4110 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 5.0 145.9 -0.058 0.053 0.000 0.000 0.314 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.115 9.76e-10\n", "V_corr= -327.83104\n", "ibin= 4111 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 14.8 169.7 -0.026 0.033 0.000 0.000 0.727 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 0.0204 6.39e-10\n", "V_corr= -317.96773\n", "ibin= 4112 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 13.9 181.8 0.042 -0.040 0.000 0.000 0.283 NaN\n", "Ages, Metallicities, Weights:\n", " 931. 0.530 8.35e-11\n", "V_corr= -318.92137\n", "ibin= 4113 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 1.6 105.7 -0.018 -0.011 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.481 5.88e-10\n", "V_corr= -331.17805\n", "ibin= 4114 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 46.9 143.0 -0.004 0.064 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.251 6.70e-10\n", "V_corr= -285.87632\n", "ibin= 4115 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 3.1 183.8 -0.056 0.002 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+03 0.659 1.60e-10\n", "V_corr= -329.70300\n", "ibin= 4116 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 19.9 166.8 -0.057 0.064 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0149 7.84e-10\n", "V_corr= -312.88882\n", "ibin= 4117 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 10.1 122.3 0.028 0.062 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.156 6.44e-10\n", "V_corr= -322.71467\n", "ibin= 4118 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 52.0 185.8 -0.018 0.005 0.000 0.000 0.460 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+04 0.645 9.03e-10\n", "V_corr= -280.76074\n", "ibin= 4119 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 43.6 198.3 0.016 0.051 0.000 0.000 0.634 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+03 0.440 9.82e-11\n", "V_corr= -289.19559\n", "ibin= 4120 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 40.7 128.0 0.004 0.010 0.000 0.000 0.680 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.312 4.31e-10\n", "V_corr= -292.08785\n", "ibin= 4121 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 69.4 141.9 -0.007 -0.006 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+04 -0.410 3.62e-10\n", "V_corr= -263.43426\n", "ibin= 4122 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 329 70.6 172.3 0.028 0.010 0.000 0.000 0.715 NaN\n", "Ages, Metallicities, Weights:\n", " 740. 0.689 4.09e-11\n", "V_corr= -262.22090\n", "ibin= 4123 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 58.0 151.0 0.051 0.022 0.000 0.000 0.255 NaN\n", "Ages, Metallicities, Weights:\n", " 1.69e+04 -0.502 2.76e-10\n", "V_corr= -274.79349\n", "ibin= 4124 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 206 93.2 221.2 0.021 0.020 0.000 0.000 0.423 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.131 4.27e-10\n", "V_corr= -239.57365\n", "ibin= 4125 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 108.4 170.9 0.064 0.009 0.000 0.000 0.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.303 3.56e-10\n", "V_corr= -224.43418\n", "ibin= 4126 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 19.6 74.2 0.013 0.004 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.535 2.74e-10\n", "V_corr= -313.25617\n", "ibin= 4127 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 35.8 98.8 0.014 0.001 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+03 -0.305 2.14e-11\n", "V_corr= -297.03132\n", "ibin= 4128 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 46.6 30.8 0.000 -0.005 0.000 0.000 0.806 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+03 -0.356 3.11e-11\n", "V_corr= -286.24573\n", "ibin= 4129 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 90.2 96.4 0.027 0.009 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 -0.260 3.93e-11\n", "V_corr= -242.60886\n", "ibin= 4130 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 92.5 102.9 0.024 -0.037 0.000 0.000 0.783 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.726 1.82e-10\n", "V_corr= -240.34110\n", "ibin= 4131 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 74.3 124.4 0.025 -0.005 0.000 0.000 0.448 NaN\n", "Ages, Metallicities, Weights:\n", " 769. 0.512 2.08e-11\n", "V_corr= -258.50136\n", "ibin= 4132 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 103.2 91.3 0.007 0.002 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+03 -0.290 2.31e-11\n", "V_corr= -229.62984\n", "ibin= 4133 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 36.5 248.6 0.000 -0.029 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.518 1.73e-10\n", "V_corr= -296.35328\n", "ibin= 4134 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 69.8 129.3 0.013 0.019 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.421 2.32e-10\n", "V_corr= -263.03745\n", "ibin= 4135 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 241 72.6 155.0 0.050 0.014 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 542. 0.643 2.09e-11\n", "V_corr= -260.25346\n", "ibin= 4136 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 48.7 121.9 0.041 0.012 0.000 0.000 0.430 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.490 2.52e-10\n", "V_corr= -284.10573\n", "ibin= 4137 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 45.8 110.7 0.033 0.014 0.000 0.000 0.621 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.407 2.70e-10\n", "V_corr= -287.02706\n", "ibin= 4138 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 161.9 150.5 -0.021 -0.038 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.256 2.32e-10\n", "V_corr= -170.92556\n", "ibin= 4139 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 68.8 132.7 -0.003 0.008 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.27e+03 0.290 3.20e-11\n", "V_corr= -264.01352\n", "ibin= 4140 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4141 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4142 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4143 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -28.1 155.0 0.027 0.048 0.000 0.000 1.193 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+03 0.527 1.46e-10\n", "V_corr= -360.92522\n", "ibin= 4144 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -72.7 169.2 0.020 0.046 0.000 0.000 1.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0925 8.42e-10\n", "V_corr= -405.52241\n", "ibin= 4145 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -35.0 158.4 -0.015 -0.022 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 1.58e+04 -0.315 6.30e-10\n", "V_corr= -367.82958\n", "ibin= 4146 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -15.9 142.9 -0.041 -0.003 0.000 0.000 1.187 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.384 7.29e-10\n", "V_corr= -348.66871\n", "ibin= 4147 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 -65.7 189.0 0.034 -0.041 0.000 0.000 0.850 NaN\n", "Ages, Metallicities, Weights:\n", " 1.35e+03 0.555 1.37e-10\n", "V_corr= -398.47621\n", "ibin= 4148 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -47.8 175.0 0.010 0.100 0.000 0.000 0.707 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0580 9.28e-10\n", "V_corr= -380.64990\n", "ibin= 4149 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -45.4 124.5 -0.007 0.021 0.000 0.000 1.251 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.269 8.59e-10\n", "V_corr= -378.16358\n", "ibin= 4150 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -40.1 153.1 0.034 -0.044 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 8.04e+03 0.0912 6.08e-10\n", "V_corr= -372.91489\n", "ibin= 4151 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -12.7 99.4 -0.049 0.013 0.000 0.000 1.142 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+04 -0.589 4.83e-10\n", "V_corr= -345.49526\n", "ibin= 4152 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -50.8 115.3 0.022 0.005 0.000 0.000 0.859 NaN\n", "Ages, Metallicities, Weights:\n", " 6.01e+03 -0.195 3.65e-10\n", "V_corr= -383.57092\n", "ibin= 4153 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -61.7 155.7 0.038 0.061 0.000 0.000 0.723 NaN\n", "Ages, Metallicities, Weights:\n", " 2.54e+03 0.238 2.25e-10\n", "V_corr= -394.46293\n", "ibin= 4154 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 179 -50.8 164.3 -0.015 0.032 0.000 0.000 0.910 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+03 0.483 2.12e-10\n", "V_corr= -383.57416\n", "ibin= 4155 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 -53.5 158.7 0.038 0.036 0.000 0.000 0.813 NaN\n", "Ages, Metallicities, Weights:\n", " 8.60e+03 0.120 7.20e-10\n", "V_corr= -386.35380\n", "ibin= 4156 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -55.5 175.2 0.103 0.056 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.00861 1.17e-09\n", "V_corr= -388.34362\n", "ibin= 4157 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -37.1 114.0 -0.026 -0.013 0.000 0.000 1.136 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.252 1.10e-09\n", "V_corr= -369.87167\n", "ibin= 4158 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -67.4 155.8 -0.026 0.011 0.000 0.000 1.041 NaN\n", "Ages, Metallicities, Weights:\n", " 1.93e+03 0.391 2.25e-10\n", "V_corr= -400.18008\n", "ibin= 4159 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -50.3 167.9 -0.068 0.000 0.000 0.000 0.782 NaN\n", "Ages, Metallicities, Weights:\n", " 4.14e+03 -0.0934 3.40e-10\n", "V_corr= -383.10276\n", "ibin= 4160 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 167 -52.9 156.5 -0.038 -0.048 0.000 0.000 0.570 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.107 1.30e-09\n", "V_corr= -385.69179\n", "ibin= 4161 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -47.2 167.5 0.029 -0.019 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+03 0.486 2.21e-10\n", "V_corr= -379.96674\n", "ibin= 4162 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -26.8 120.0 -0.067 0.094 0.000 0.000 0.800 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.277 1.09e-09\n", "V_corr= -359.64282\n", "ibin= 4163 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -52.5 140.4 0.009 0.045 0.000 0.000 0.726 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 0.525 2.64e-10\n", "V_corr= -385.30140\n", "ibin= 4164 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 -32.4 138.7 -0.069 0.014 0.000 0.000 0.716 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+03 0.516 2.09e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -365.24453\n", "ibin= 4165 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 145 -8.1 187.0 -0.017 -0.002 0.000 0.000 0.422 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0636 1.36e-09\n", "V_corr= -340.90008\n", "ibin= 4166 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -26.0 158.7 0.028 0.087 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 2.73e+03 0.499 3.72e-10\n", "V_corr= -358.76472\n", "ibin= 4167 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -31.5 131.9 -0.010 0.024 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.174 1.26e-09\n", "V_corr= -364.26898\n", "ibin= 4168 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -11.3 125.2 -0.114 0.042 0.000 0.000 0.442 NaN\n", "Ages, Metallicities, Weights:\n", " 2.22e+03 0.0140 2.06e-10\n", "V_corr= -344.11414\n", "ibin= 4169 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 80 -8.1 121.3 0.020 0.019 0.000 0.000 0.373 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.212 1.21e-09\n", "V_corr= -340.93982\n", "ibin= 4170 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -13.7 155.8 -0.007 0.026 0.000 0.000 0.522 NaN\n", "Ages, Metallicities, Weights:\n", " 4.23e+03 0.143 4.14e-10\n", "V_corr= -346.55694\n", "ibin= 4171 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -16.9 140.7 -0.031 0.088 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0733 1.18e-09\n", "V_corr= -349.71865\n", "ibin= 4172 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 24.0 116.9 -0.028 0.058 0.000 0.000 0.497 NaN\n", "Ages, Metallicities, Weights:\n", " 5.95e+03 -0.0697 4.50e-10\n", "V_corr= -308.82823\n", "ibin= 4173 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -7.8 156.6 0.052 0.084 0.000 0.000 0.400 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.116 1.13e-09\n", "V_corr= -340.59200\n", "ibin= 4174 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -23.6 187.9 0.036 0.045 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+04 0.556 1.22e-09\n", "V_corr= -356.36764\n", "ibin= 4175 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -23.4 173.7 -0.054 0.056 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 3.33e+03 0.645 5.14e-10\n", "V_corr= -356.24362\n", "ibin= 4176 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 31.4 156.6 -0.011 0.036 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.147 1.06e-09\n", "V_corr= -301.37621\n", "ibin= 4177 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 15.2 114.8 -0.053 0.026 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 5.40e+03 -0.0397 3.47e-10\n", "V_corr= -317.62503\n", "ibin= 4178 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 16.1 172.2 -0.065 0.026 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.227 7.93e-10\n", "V_corr= -316.66071\n", "ibin= 4179 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 30.4 163.3 -0.006 -0.037 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0215 9.69e-10\n", "V_corr= -302.42354\n", "ibin= 4180 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 9.8 172.4 0.018 -0.078 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+03 0.672 1.14e-10\n", "V_corr= -323.00052\n", "ibin= 4181 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 41.6 119.9 -0.048 0.046 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.615 4.82e-10\n", "V_corr= -291.25549\n", "ibin= 4182 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 23.4 116.3 0.001 0.054 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.0273 1.48e-10\n", "V_corr= -309.39839\n", "ibin= 4183 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 42.3 129.9 -0.034 0.036 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.60e+04 -0.629 4.08e-10\n", "V_corr= -290.47370\n", "ibin= 4184 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -11.1 188.9 -0.074 0.105 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 3.08e+03 0.463 2.06e-10\n", "V_corr= -343.93705\n", "ibin= 4185 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 44.0 120.1 -0.003 0.016 0.000 0.000 0.504 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.347 5.81e-10\n", "V_corr= -288.81829\n", "ibin= 4186 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 42.1 79.7 0.006 0.000 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.432 4.82e-10\n", "V_corr= -290.71083\n", "ibin= 4187 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 65.0 132.2 -0.001 0.032 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 7.41e+03 -0.168 2.29e-10\n", "V_corr= -267.77965\n", "ibin= 4188 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 33.9 69.6 -0.015 -0.003 0.000 0.000 0.333 NaN\n", "Ages, Metallicities, Weights:\n", " 3.86e+03 -0.758 7.71e-11\n", "V_corr= -298.94042\n", "ibin= 4189 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 68.0 134.5 0.033 0.041 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.390 3.56e-10\n", "V_corr= -264.76246\n", "ibin= 4190 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 54.7 125.3 -0.005 0.025 0.000 0.000 0.466 NaN\n", "Ages, Metallicities, Weights:\n", " 1.80e+04 -0.453 3.34e-10\n", "V_corr= -278.12627\n", "ibin= 4191 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 98.6 175.3 -0.024 -0.038 0.000 0.000 0.744 NaN\n", "Ages, Metallicities, Weights:\n", " 8.75e+03 -0.204 1.99e-10\n", "V_corr= -234.23160\n", "ibin= 4192 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 142 70.3 181.5 -0.071 -0.003 0.000 0.000 0.511 NaN\n", "Ages, Metallicities, Weights:\n", " 1.62e+04 -0.572 2.17e-10\n", "V_corr= -262.47645\n", "ibin= 4193 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 95.7 158.3 -0.021 -0.031 0.000 0.000 0.446 NaN\n", "Ages, Metallicities, Weights:\n", " 2.50e+03 -0.255 5.80e-11\n", "V_corr= -237.13257\n", "ibin= 4194 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 158 64.4 146.0 0.030 0.026 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.355 3.23e-10\n", "V_corr= -268.42097\n", "ibin= 4195 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 52.4 210.0 0.067 -0.042 0.000 0.000 0.331 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+04 0.689 6.20e-10\n", "V_corr= -280.44931\n", "ibin= 4196 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 67.8 104.3 0.031 0.001 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.731 1.86e-10\n", "V_corr= -265.03061\n", "ibin= 4197 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 47.4 66.3 0.005 -0.004 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.19e+04 -1.03 1.17e-10\n", "V_corr= -285.37689\n", "ibin= 4198 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 33.7 26.2 0.000 -0.001 0.000 0.000 0.505 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+04 -1.03 1.45e-10\n", "V_corr= -299.09512\n", "ibin= 4199 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 25.5 132.9 0.022 0.003 0.000 0.000 0.543 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 0.133 3.19e-11\n", "V_corr= -307.33465\n", "ibin= 4200 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 96.8 315.6 -0.037 -0.022 0.000 0.000 0.310 NaN\n", "Ages, Metallicities, Weights:\n", " 2.84e+03 0.127 7.83e-11\n", "V_corr= -235.99960\n", "ibin= 4201 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 74 81.7 162.5 -0.019 -0.015 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 3.23e+03 0.00211 6.99e-11\n", "V_corr= -251.07489\n", "ibin= 4202 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 144.4 161.0 0.016 -0.027 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.424 2.33e-10\n", "V_corr= -188.36904\n", "ibin= 4203 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 74.4 188.7 0.013 -0.013 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 868. 0.485 2.47e-11\n", "V_corr= -258.39705\n", "ibin= 4204 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 -26.7 131.6 -0.009 0.021 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 -0.0476 3.13e-11\n", "V_corr= -359.50964\n", "ibin= 4205 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 11.1 143.3 0.064 0.069 0.000 0.000 0.544 NaN\n", "Ages, Metallicities, Weights:\n", " 3.42e+03 0.310 9.93e-11\n", "V_corr= -321.72157\n", "ibin= 4206 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 16.2 136.4 0.021 0.009 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.84e+03 0.481 6.26e-11\n", "V_corr= -316.57631\n", "ibin= 4207 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 275 145.0 187.2 0.001 -0.027 0.000 0.000 0.235 NaN\n", "Ages, Metallicities, Weights:\n", " 2.94e+03 -0.872 3.55e-11\n", "V_corr= -187.83800\n", "ibin= 4208 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 123.9 176.5 -0.008 -0.047 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.332 2.39e-10\n", "V_corr= -208.92391\n", "ibin= 4209 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4210 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4211 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4212 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -36.2 166.6 0.076 0.018 0.000 0.000 1.241 NaN\n", "Ages, Metallicities, Weights:\n", " 1.40e+03 0.571 1.23e-10\n", "V_corr= -369.04646\n", "ibin= 4213 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -35.9 190.4 0.025 -0.031 0.000 0.000 0.965 NaN\n", "Ages, Metallicities, Weights:\n", " 2.83e+03 0.448 2.47e-10\n", "V_corr= -368.75827\n", "ibin= 4214 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -17.0 165.4 0.013 0.049 0.000 0.000 0.869 NaN\n", "Ages, Metallicities, Weights:\n", " 3.52e+03 -0.0660 2.03e-10\n", "V_corr= -349.82676\n", "ibin= 4215 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -58.3 123.8 0.039 0.018 0.000 0.000 2.692 NaN\n", "Ages, Metallicities, Weights:\n", " 2.62e+03 0.0482 1.72e-10\n", "V_corr= -391.13442\n", "ibin= 4216 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -36.0 112.4 -0.005 0.058 0.000 0.000 0.854 NaN\n", "Ages, Metallicities, Weights:\n", " 7.15e+03 -0.134 3.77e-10\n", "V_corr= -368.78832\n", "ibin= 4217 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 261 -46.5 130.6 0.004 -0.010 0.000 0.000 1.193 NaN\n", "Ages, Metallicities, Weights:\n", " 928. 0.651 9.78e-11\n", "V_corr= -379.30038\n", "ibin= 4218 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -67.5 130.8 0.056 0.022 0.000 0.000 0.676 NaN\n", "Ages, Metallicities, Weights:\n", " 3.29e+03 -0.0384 2.10e-10\n", "V_corr= -400.30563\n", "ibin= 4219 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 154 -59.4 104.0 -0.044 -0.038 0.000 0.000 1.675 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.379 7.90e-10\n", "V_corr= -392.18575\n", "ibin= 4220 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 -37.9 134.8 0.015 0.058 0.000 0.000 1.243 NaN\n", "Ages, Metallicities, Weights:\n", " 6.49e+03 -0.105 4.00e-10\n", "V_corr= -370.68046\n", "ibin= 4221 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 -57.9 126.2 -0.094 -0.004 0.000 0.000 0.530 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.364 8.50e-10\n", "V_corr= -390.70332\n", "ibin= 4222 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -24.4 156.1 0.078 0.055 0.000 0.000 1.133 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 9.49e-10\n", "V_corr= -357.23833\n", "ibin= 4223 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -38.7 110.0 0.034 0.022 0.000 0.000 1.309 NaN\n", "Ages, Metallicities, Weights:\n", " 6.37e+03 -0.0762 4.37e-10\n", "V_corr= -371.47000\n", "ibin= 4224 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -26.1 129.4 0.027 0.045 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.256 9.81e-10\n", "V_corr= -358.86232\n", "ibin= 4225 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -53.7 145.8 0.060 -0.033 0.000 0.000 0.733 NaN\n", "Ages, Metallicities, Weights:\n", " 4.49e+03 0.166 4.10e-10\n", "V_corr= -386.46511\n", "ibin= 4226 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -55.2 127.7 0.008 -0.006 0.000 0.000 0.730 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.309 1.01e-09\n", "V_corr= -387.98182\n", "ibin= 4227 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -17.6 153.0 0.015 0.064 0.000 0.000 0.697 NaN\n", "Ages, Metallicities, Weights:\n", " 7.94e+03 0.0457 6.30e-10\n", "V_corr= -350.45447\n", "ibin= 4228 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -38.0 145.0 0.029 0.040 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 0.369 2.22e-10\n", "V_corr= -370.80357\n", "ibin= 4229 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 -24.5 134.7 0.024 0.011 0.000 0.000 0.872 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.417 9.69e-10\n", "V_corr= -357.26652\n", "ibin= 4230 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -41.1 173.3 0.017 0.027 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0864 1.25e-09\n", "V_corr= -373.89589\n", "ibin= 4231 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -35.9 134.6 0.049 -0.001 0.000 0.000 0.684 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.484 7.66e-10\n", "V_corr= -368.67810\n", "ibin= 4232 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -50.6 153.2 0.016 0.038 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+03 0.569 1.42e-10\n", "V_corr= -383.43578\n", "ibin= 4233 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -25.7 171.2 0.011 -0.024 0.000 0.000 0.724 NaN\n", "Ages, Metallicities, Weights:\n", " 1.30e+03 0.602 1.83e-10\n", "V_corr= -358.52293\n", "ibin= 4234 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -24.4 158.8 0.006 0.035 0.000 0.000 0.340 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 8.56e+03 0.128 8.11e-10\n", "V_corr= -357.20508\n", "ibin= 4235 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -40.2 128.1 0.028 -0.006 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 1.94e+04 -0.144 1.19e-09\n", "V_corr= -372.96985\n", "ibin= 4236 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -31.9 169.1 0.131 0.025 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 3.47e+03 0.298 3.62e-10\n", "V_corr= -364.73185\n", "ibin= 4237 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -1.8 64.7 -0.019 0.024 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.89e+03 -0.260 1.41e-10\n", "V_corr= -334.62278\n", "ibin= 4238 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 113 -9.3 166.5 0.050 0.065 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0143 1.27e-09\n", "V_corr= -342.06586\n", "ibin= 4239 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -20.0 163.4 0.009 -0.008 0.000 0.000 0.331 NaN\n", "Ages, Metallicities, Weights:\n", " 5.88e+03 0.0792 5.16e-10\n", "V_corr= -352.80976\n", "ibin= 4240 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -14.6 106.8 0.002 -0.013 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.429 7.39e-10\n", "V_corr= -347.37712\n", "ibin= 4241 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 4.6 143.6 0.007 0.057 0.000 0.000 0.476 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.217 1.01e-09\n", "V_corr= -328.17277\n", "ibin= 4242 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 1.3 150.9 0.030 0.009 0.000 0.000 0.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 1.13e-09\n", "V_corr= -331.47020\n", "ibin= 4243 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 24.0 108.2 -0.045 0.037 0.000 0.000 0.546 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.277 7.68e-10\n", "V_corr= -308.85570\n", "ibin= 4244 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -17.3 137.3 0.041 0.037 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 6.14e+03 -0.137 3.72e-10\n", "V_corr= -350.15113\n", "ibin= 4245 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -8.0 109.5 -0.088 0.028 0.000 0.000 0.336 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.376 7.65e-10\n", "V_corr= -340.80600\n", "ibin= 4246 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 -7.7 178.4 0.064 0.049 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 2.32e+03 0.466 2.20e-10\n", "V_corr= -340.46192\n", "ibin= 4247 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 40.6 137.8 -0.031 0.047 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 5.94e+03 -0.148 3.13e-10\n", "V_corr= -292.21886\n", "ibin= 4248 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 15.3 137.4 0.032 0.037 0.000 0.000 0.584 NaN\n", "Ages, Metallicities, Weights:\n", " 1.65e+04 -0.150 7.10e-10\n", "V_corr= -317.54320\n", "ibin= 4249 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -3.0 151.0 0.056 0.073 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+03 0.459 1.03e-10\n", "V_corr= -335.82610\n", "ibin= 4250 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 2.4 149.6 0.018 0.028 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0648 8.34e-10\n", "V_corr= -330.35898\n", "ibin= 4251 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 311 30.3 37.8 0.005 0.002 0.000 0.000 0.413 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.860 3.07e-10\n", "V_corr= -302.49776\n", "ibin= 4252 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 50.0 95.7 0.012 0.006 0.000 0.000 0.286 NaN\n", "Ages, Metallicities, Weights:\n", " 1.64e+04 -0.577 4.35e-10\n", "V_corr= -282.79332\n", "ibin= 4253 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 -7.2 177.1 -0.031 0.098 0.000 0.000 0.396 NaN\n", "Ages, Metallicities, Weights:\n", " 6.81e+03 0.348 3.69e-10\n", "V_corr= -340.03360\n", "ibin= 4254 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 24.9 92.9 0.041 0.018 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 4.26e+03 -0.340 1.53e-10\n", "V_corr= -307.86780\n", "ibin= 4255 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 74.9 154.9 -0.007 0.025 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 2.24e+03 0.0273 9.91e-11\n", "V_corr= -257.94666\n", "ibin= 4256 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 52.3 178.0 -0.015 0.008 0.000 0.000 0.582 NaN\n", "Ages, Metallicities, Weights:\n", " 3.07e+03 0.689 2.43e-10\n", "V_corr= -280.55776\n", "ibin= 4257 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 36.0 192.3 0.012 0.034 0.000 0.000 0.549 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.214 4.14e-10\n", "V_corr= -296.77660\n", "ibin= 4258 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 26.8 125.9 0.055 0.001 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.523 3.16e-10\n", "V_corr= -306.01064\n", "ibin= 4259 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 53.1 149.0 0.025 0.014 0.000 0.000 0.321 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00502 4.48e-10\n", "V_corr= -279.74498\n", "ibin= 4260 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 133.9 129.7 0.021 -0.004 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 8.86e+03 -0.408 1.33e-10\n", "V_corr= -198.92686\n", "ibin= 4261 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 87.3 162.7 0.037 0.006 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.407 2.70e-10\n", "V_corr= -245.55634\n", "ibin= 4262 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 60.3 157.5 0.013 0.040 0.000 0.000 0.759 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0763 4.20e-10\n", "V_corr= -272.52627\n", "ibin= 4263 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 79.8 173.1 0.009 -0.063 0.000 0.000 0.292 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0727 4.02e-10\n", "V_corr= -253.01332\n", "ibin= 4264 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 45.4 215.0 -0.030 -0.000 0.000 0.000 0.651 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.157 3.92e-10\n", "V_corr= -287.41772\n", "ibin= 4265 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 63.6 76.6 0.014 0.007 0.000 0.000 0.397 NaN\n", "Ages, Metallicities, Weights:\n", " 811. -0.116 1.71e-11\n", "V_corr= -269.16995\n", "ibin= 4266 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 23.6 155.2 0.017 0.051 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+03 0.583 4.13e-11\n", "V_corr= -309.20460\n", "ibin= 4267 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 204 81.3 254.5 0.089 -0.081 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 8.43e+03 0.233 2.46e-10\n", "V_corr= -251.46363\n", "ibin= 4268 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 105.0 127.4 0.007 0.010 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 853. 0.0623 1.86e-11\n", "V_corr= -227.81072\n", "ibin= 4269 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 70.9 210.7 0.037 0.033 0.000 0.000 0.509 NaN\n", "Ages, Metallicities, Weights:\n", " 9.96e+03 0.240 2.37e-10\n", "V_corr= -261.93329\n", "ibin= 4270 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 54.1 187.3 -0.033 -0.009 0.000 0.000 0.563 NaN\n", "Ages, Metallicities, Weights:\n", " 2.53e+03 0.525 8.22e-11\n", "V_corr= -278.67090\n", "ibin= 4271 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 122.6 184.1 0.009 -0.042 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.721 1.51e-10\n", "V_corr= -210.19141\n", "ibin= 4272 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 209 40.6 234.9 0.024 -0.023 0.000 0.000 0.318 NaN\n", "Ages, Metallicities, Weights:\n", " 684. 0.689 2.40e-11\n", "V_corr= -292.25278\n", "ibin= 4273 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 21.5 105.5 0.020 -0.004 0.000 0.000 0.475 NaN\n", "Ages, Metallicities, Weights:\n", " 753. 0.158 1.78e-11\n", "V_corr= -311.35165\n", "ibin= 4274 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 402 7.0 44.6 0.002 0.002 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 8.63e+03 -1.00 9.50e-11\n", "V_corr= -325.82130\n", "ibin= 4275 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 41.3 106.3 0.049 -0.004 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 7.83e+03 -0.260 1.23e-10\n", "V_corr= -291.47754\n", "ibin= 4276 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 46.5 168.7 0.018 -0.030 0.000 0.000 0.470 NaN\n", "Ages, Metallicities, Weights:\n", " 947. 0.689 3.26e-11\n", "V_corr= -286.27264\n", "ibin= 4277 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 104.4 146.1 0.011 0.021 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.290 2.43e-10\n", "V_corr= -228.44501\n", "ibin= 4278 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4279 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4280 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4281 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 84 -72.0 110.2 -0.026 0.017 0.000 0.000 0.808 NaN\n", "Ages, Metallicities, Weights:\n", " 8.36e+03 -0.226 3.60e-10\n", "V_corr= -404.79087\n", "ibin= 4282 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -83.8 126.7 0.014 -0.045 0.000 0.000 0.943 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.338 7.21e-10\n", "V_corr= -416.63030\n", "ibin= 4283 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -43.4 142.9 -0.038 0.030 0.000 0.000 0.960 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.224 6.85e-10\n", "V_corr= -376.25174\n", "ibin= 4284 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -57.3 177.2 0.028 0.050 0.000 0.000 0.818 NaN\n", "Ages, Metallicities, Weights:\n", " 3.00e+03 0.324 2.26e-10\n", "V_corr= -390.14673\n", "ibin= 4285 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -48.8 208.2 -0.005 0.014 0.000 0.000 0.873 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.203 1.08e-09\n", "V_corr= -381.65315\n", "ibin= 4286 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -58.6 114.4 -0.042 0.020 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.21e+03 0.279 8.49e-11\n", "V_corr= -391.37928\n", "ibin= 4287 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -61.6 151.1 0.139 -0.018 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.319 8.00e-10\n", "V_corr= -394.38039\n", "ibin= 4288 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -44.8 167.6 0.041 -0.006 0.000 0.000 1.525 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.146 9.13e-10\n", "V_corr= -377.59374\n", "ibin= 4289 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -56.6 107.1 0.001 -0.003 0.000 0.000 1.051 NaN\n", "Ages, Metallicities, Weights:\n", " 1.51e+04 -0.262 6.85e-10\n", "V_corr= -389.41262\n", "ibin= 4290 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -49.7 141.1 -0.017 0.010 0.000 0.000 0.764 NaN\n", "Ages, Metallicities, Weights:\n", " 1.87e+04 -0.146 9.36e-10\n", "V_corr= -382.48751\n", "ibin= 4291 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -62.8 158.5 0.028 0.049 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 3.43e+03 0.0486 2.53e-10\n", "V_corr= -395.63531\n", "ibin= 4292 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -58.6 138.4 0.016 0.033 0.000 0.000 1.019 NaN\n", "Ages, Metallicities, Weights:\n", " 8.07e+03 0.0734 6.00e-10\n", "V_corr= -391.41683\n", "ibin= 4293 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -48.1 137.8 -0.036 -0.001 0.000 0.000 0.637 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.397 8.68e-10\n", "V_corr= -380.88648\n", "ibin= 4294 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 146 -39.4 179.6 0.018 0.050 0.000 0.000 1.001 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+04 0.260 1.39e-09\n", "V_corr= -372.19562\n", "ibin= 4295 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -57.3 113.1 -0.015 -0.007 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 4.77e+03 -0.234 3.30e-10\n", "V_corr= -390.11004\n", "ibin= 4296 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -58.5 166.4 0.055 0.066 0.000 0.000 0.655 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0263 1.18e-09\n", "V_corr= -391.35130\n", "ibin= 4297 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -35.9 149.2 0.005 0.034 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 8.17e+03 -0.0415 5.99e-10\n", "V_corr= -368.73490\n", "ibin= 4298 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -23.8 124.5 -0.015 0.044 0.000 0.000 0.742 NaN\n", "Ages, Metallicities, Weights:\n", " 2.74e+03 -0.135 2.11e-10\n", "V_corr= -356.58332\n", "ibin= 4299 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -10.7 129.3 -0.007 0.011 0.000 0.000 0.792 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.342 9.69e-10\n", "V_corr= -343.51158\n", "ibin= 4300 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -26.0 141.2 -0.039 -0.009 0.000 0.000 0.843 NaN\n", "Ages, Metallicities, Weights:\n", " 5.57e+03 -0.0191 4.58e-10\n", "V_corr= -358.84021\n", "ibin= 4301 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -47.6 143.2 -0.024 0.081 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 1.88e+03 0.487 2.29e-10\n", "V_corr= -380.38191\n", "ibin= 4302 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -37.7 158.4 0.025 -0.029 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.194 1.19e-09\n", "V_corr= -370.48443\n", "ibin= 4303 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 124 -63.3 142.2 -0.017 -0.021 0.000 0.000 0.490 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.365 1.01e-09\n", "V_corr= -396.09399\n", "ibin= 4304 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -28.4 109.5 -0.005 0.015 0.000 0.000 0.832 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.339 9.84e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -361.22843\n", "ibin= 4305 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -16.6 159.3 0.009 0.033 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 0.0839 1.02e-09\n", "V_corr= -349.37299\n", "ibin= 4306 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -19.9 137.6 -0.038 0.037 0.000 0.000 0.481 NaN\n", "Ages, Metallicities, Weights:\n", " 5.82e+03 -0.0963 4.24e-10\n", "V_corr= -352.74386\n", "ibin= 4307 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -22.5 154.3 -0.004 0.039 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.90e+03 0.522 2.30e-10\n", "V_corr= -355.32808\n", "ibin= 4308 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 0.7 145.2 -0.038 0.006 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+04 -0.171 8.90e-10\n", "V_corr= -332.07246\n", "ibin= 4309 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -27.1 155.6 -0.002 0.026 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.649 1.13e-10\n", "V_corr= -359.88247\n", "ibin= 4310 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 9.1 132.5 0.002 0.036 0.000 0.000 0.456 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.121 9.85e-10\n", "V_corr= -323.68779\n", "ibin= 4311 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 7.6 128.5 0.016 0.028 0.000 0.000 0.417 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.157 9.92e-10\n", "V_corr= -325.23487\n", "ibin= 4312 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -1.0 222.6 0.057 0.069 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 7.56e+03 0.570 6.00e-10\n", "V_corr= -333.80789\n", "ibin= 4313 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -22.8 154.8 0.002 0.076 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0645 7.44e-10\n", "V_corr= -355.56861\n", "ibin= 4314 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 4.1 108.5 -0.016 0.012 0.000 0.000 0.355 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.365 7.25e-10\n", "V_corr= -328.66589\n", "ibin= 4315 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 12.0 116.3 -0.043 0.025 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 5.07e+03 -0.246 2.81e-10\n", "V_corr= -320.80043\n", "ibin= 4316 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 3.3 129.8 -0.049 -0.006 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 2.14e+03 0.0302 1.36e-10\n", "V_corr= -329.48805\n", "ibin= 4317 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 182 1.2 153.4 0.071 0.123 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.225 9.67e-10\n", "V_corr= -331.61932\n", "ibin= 4318 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 5.8 159.7 0.009 0.040 0.000 0.000 0.515 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.100 7.97e-10\n", "V_corr= -327.05747\n", "ibin= 4319 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 10.5 109.0 -0.020 0.024 0.000 0.000 0.478 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.502 5.82e-10\n", "V_corr= -322.30879\n", "ibin= 4320 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -9.2 133.6 0.000 0.007 0.000 0.000 0.654 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0691 7.60e-10\n", "V_corr= -341.96632\n", "ibin= 4321 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 28.0 149.4 0.018 0.037 0.000 0.000 0.667 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.320 5.76e-10\n", "V_corr= -304.76436\n", "ibin= 4322 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 5.9 172.2 -0.070 0.009 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.195 6.21e-10\n", "V_corr= -326.90569\n", "ibin= 4323 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 12.7 87.7 0.020 -0.015 0.000 0.000 0.378 NaN\n", "Ages, Metallicities, Weights:\n", " 4.19e+03 -0.266 1.58e-10\n", "V_corr= -320.13885\n", "ibin= 4324 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 44.4 117.5 0.049 -0.008 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 0.0991 9.32e-11\n", "V_corr= -288.43632\n", "ibin= 4325 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 21.2 142.7 -0.007 0.055 0.000 0.000 0.404 NaN\n", "Ages, Metallicities, Weights:\n", " 8.08e+03 0.000499 2.93e-10\n", "V_corr= -311.57786\n", "ibin= 4326 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 65.3 156.2 0.013 0.009 0.000 0.000 0.606 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.225 4.26e-10\n", "V_corr= -267.52397\n", "ibin= 4327 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 27.3 206.6 -0.006 -0.002 0.000 0.000 0.435 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.188 4.21e-10\n", "V_corr= -305.47547\n", "ibin= 4328 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 103.3 272.5 0.001 0.013 0.000 0.000 0.486 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.285 4.31e-10\n", "V_corr= -229.47764\n", "ibin= 4329 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -5.4 118.9 0.010 0.033 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.450 2.62e-10\n", "V_corr= -338.19685\n", "ibin= 4330 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 407 90.8 180.3 0.027 0.080 0.000 0.000 0.395 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 0.689 8.85e-10\n", "V_corr= -242.04859\n", "ibin= 4331 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 47.6 136.8 0.043 -0.022 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 842. -0.105 2.01e-11\n", "V_corr= -285.16990\n", "ibin= 4332 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 48.6 161.9 0.030 0.004 0.000 0.000 0.632 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.170 3.11e-10\n", "V_corr= -284.19267\n", "ibin= 4333 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 118.6 149.7 0.026 -0.030 0.000 0.000 1.020 NaN\n", "Ages, Metallicities, Weights:\n", " 4.21e+03 -0.0813 9.16e-11\n", "V_corr= -214.16730\n", "ibin= 4334 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 42.1 25.1 -0.001 -0.000 0.000 0.000 0.640 NaN\n", "Ages, Metallicities, Weights:\n", " 742. -0.316 2.16e-11\n", "V_corr= -290.71487\n", "ibin= 4335 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -2.6 118.8 0.005 0.036 0.000 0.000 0.350 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.596 2.14e-10\n", "V_corr= -335.37252\n", "ibin= 4336 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 101.5 84.4 0.022 0.011 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 5.42e+03 -0.776 7.19e-11\n", "V_corr= -231.27033\n", "ibin= 4337 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 81.2 98.3 -0.031 -0.012 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 4.59e+03 -0.284 8.33e-11\n", "V_corr= -251.65172\n", "ibin= 4338 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 9.1 84.1 0.022 -0.005 0.000 0.000 0.419 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 -0.652 2.90e-11\n", "V_corr= -323.67880\n", "ibin= 4339 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 69.1 133.1 0.011 -0.011 0.000 0.000 0.541 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+03 0.242 3.33e-11\n", "V_corr= -263.68779\n", "ibin= 4340 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 195 188.4 168.7 0.012 -0.005 0.000 0.000 0.360 NaN\n", "Ages, Metallicities, Weights:\n", " 6.56e+03 0.177 1.49e-10\n", "V_corr= -144.40958\n", "ibin= 4341 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 110.4 134.8 -0.004 -0.007 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 711. -0.0523 1.37e-11\n", "V_corr= -222.45183\n", "ibin= 4342 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 114.2 232.3 -0.001 0.027 0.000 0.000 0.484 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.293 2.79e-10\n", "V_corr= -218.59851\n", "ibin= 4343 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 208 50.5 124.5 -0.017 0.030 0.000 0.000 0.407 NaN\n", "Ages, Metallicities, Weights:\n", " 851. 0.632 2.83e-11\n", "V_corr= -282.32995\n", "ibin= 4344 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 382 133.0 289.2 0.029 0.023 0.000 0.000 0.496 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.689 7.98e-10\n", "V_corr= -199.80129\n", "ibin= 4345 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 94.3 113.6 -0.027 0.008 0.000 0.000 0.389 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+04 -0.307 2.49e-10\n", "V_corr= -238.50275\n", "ibin= 4346 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 174.3 129.4 -0.007 -0.002 0.000 0.000 0.531 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+04 -0.782 1.32e-10\n", "V_corr= -158.51745\n", "ibin= 4347 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4348 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4349 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4350 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 265 -50.8 122.5 0.020 0.014 0.000 0.000 1.169 NaN\n", "Ages, Metallicities, Weights:\n", " 1.47e+04 -0.283 5.46e-10\n", "V_corr= -383.63014\n", "ibin= 4351 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 137 -60.4 117.6 0.028 0.009 0.000 0.000 1.256 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.573 5.55e-10\n", "V_corr= -393.19822\n", "ibin= 4352 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 -62.0 149.9 0.087 0.019 0.000 0.000 1.265 NaN\n", "Ages, Metallicities, Weights:\n", " 3.90e+03 0.0834 2.41e-10\n", "V_corr= -394.76584\n", "ibin= 4353 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -18.5 157.6 0.059 0.029 0.000 0.000 0.891 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.209 7.93e-10\n", "V_corr= -351.35099\n", "ibin= 4354 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -74.4 148.6 -0.013 -0.001 0.000 0.000 1.505 NaN\n", "Ages, Metallicities, Weights:\n", " 3.01e+03 0.125 2.04e-10\n", "V_corr= -407.19103\n", "ibin= 4355 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -71.9 142.2 0.029 0.023 0.000 0.000 0.695 NaN\n", "Ages, Metallicities, Weights:\n", " 3.46e+03 -0.0460 2.05e-10\n", "V_corr= -404.75095\n", "ibin= 4356 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 -41.4 211.3 0.161 0.026 0.000 0.000 0.716 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0109 9.62e-10\n", "V_corr= -374.23957\n", "ibin= 4357 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 186 -38.3 132.4 0.052 0.035 0.000 0.000 1.222 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.106 6.59e-10\n", "V_corr= -371.14945\n", "ibin= 4358 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -46.3 161.2 -0.008 0.040 0.000 0.000 1.059 NaN\n", "Ages, Metallicities, Weights:\n", " 3.47e+03 0.193 2.62e-10\n", "V_corr= -379.15701\n", "ibin= 4359 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -44.0 131.7 0.045 0.007 0.000 0.000 0.960 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+04 -0.494 6.02e-10\n", "V_corr= -376.81211\n", "ibin= 4360 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -55.6 132.2 -0.046 0.036 0.000 0.000 0.720 NaN\n", "Ages, Metallicities, Weights:\n", " 1.23e+03 0.514 1.18e-10\n", "V_corr= -388.41846\n", "ibin= 4361 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 -61.5 152.4 -0.017 -0.038 0.000 0.000 0.416 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+03 0.511 1.91e-10\n", "V_corr= -394.33008\n", "ibin= 4362 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -34.6 130.1 -0.031 0.054 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 9.97e+03 -0.00230 6.45e-10\n", "V_corr= -367.40295\n", "ibin= 4363 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 135 6.3 160.7 0.079 -0.026 0.000 0.000 0.552 NaN\n", "Ages, Metallicities, Weights:\n", " 1.08e+04 0.0390 8.32e-10\n", "V_corr= -326.52960\n", "ibin= 4364 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -9.2 108.9 -0.036 0.044 0.000 0.000 0.643 NaN\n", "Ages, Metallicities, Weights:\n", " 1.75e+04 -0.406 7.71e-10\n", "V_corr= -341.97753\n", "ibin= 4365 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 217 -50.4 121.2 -0.004 0.068 0.000 0.000 0.652 NaN\n", "Ages, Metallicities, Weights:\n", " 2.72e+03 -0.107 1.96e-10\n", "V_corr= -383.16637\n", "ibin= 4366 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -22.7 119.4 -0.018 0.034 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 4.82e+03 -0.153 3.44e-10\n", "V_corr= -355.54510\n", "ibin= 4367 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -25.5 154.8 -0.046 0.053 0.000 0.000 0.650 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0147 1.17e-09\n", "V_corr= -358.32542\n", "ibin= 4368 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -58.7 129.0 0.040 0.081 0.000 0.000 0.921 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 9.92e-10\n", "V_corr= -391.47758\n", "ibin= 4369 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 71 -17.5 121.9 -0.048 0.057 0.000 0.000 0.488 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.253 1.01e-09\n", "V_corr= -350.32547\n", "ibin= 4370 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -45.4 183.2 0.098 -0.029 0.000 0.000 0.734 NaN\n", "Ages, Metallicities, Weights:\n", " 1.67e+03 0.434 1.91e-10\n", "V_corr= -378.22146\n", "ibin= 4371 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -28.5 120.7 -0.061 0.070 0.000 0.000 0.565 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.302 8.50e-10\n", "V_corr= -361.26900\n", "ibin= 4372 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -1.3 139.9 -0.016 -0.007 0.000 0.000 0.569 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.184 7.09e-10\n", "V_corr= -334.14785\n", "ibin= 4373 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -11.6 126.5 -0.003 -0.010 0.000 0.000 0.537 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.396 8.82e-10\n", "V_corr= -344.38975\n", "ibin= 4374 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -26.5 167.7 -0.022 -0.016 0.000 0.000 0.355 NaN\n", "Ages, Metallicities, Weights:\n", " 1.04e+04 0.0458 7.79e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -359.26766\n", "ibin= 4375 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -47.7 153.7 -0.019 0.096 0.000 0.000 0.451 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0122 1.11e-09\n", "V_corr= -380.46144\n", "ibin= 4376 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 1.8 132.1 -0.013 0.020 0.000 0.000 0.401 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.233 9.45e-10\n", "V_corr= -330.97595\n", "ibin= 4377 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -0.1 125.1 -0.011 0.041 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 5.26e+03 -0.283 2.98e-10\n", "V_corr= -332.90033\n", "ibin= 4378 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -21.1 145.2 0.027 0.041 0.000 0.000 0.321 NaN\n", "Ages, Metallicities, Weights:\n", " 2.78e+03 0.00833 1.83e-10\n", "V_corr= -353.92090\n", "ibin= 4379 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -16.7 124.5 0.039 -0.028 0.000 0.000 0.384 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.291 8.81e-10\n", "V_corr= -349.51292\n", "ibin= 4380 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -14.1 102.7 -0.044 0.028 0.000 0.000 0.588 NaN\n", "Ages, Metallicities, Weights:\n", " 5.78e+03 -0.109 3.62e-10\n", "V_corr= -346.88620\n", "ibin= 4381 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -9.0 158.2 -0.034 0.018 0.000 0.000 0.314 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0242 9.63e-10\n", "V_corr= -341.80036\n", "ibin= 4382 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 29.9 188.6 0.020 -0.002 0.000 0.000 0.267 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.109 7.66e-10\n", "V_corr= -302.95063\n", "ibin= 4383 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -12.1 141.9 -0.054 0.007 0.000 0.000 0.567 NaN\n", "Ages, Metallicities, Weights:\n", " 1.11e+04 0.00695 6.08e-10\n", "V_corr= -344.87418\n", "ibin= 4384 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 61 6.6 125.9 0.029 0.025 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 5.74e+03 0.00338 3.62e-10\n", "V_corr= -326.16853\n", "ibin= 4385 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -6.8 138.8 -0.114 0.037 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 2.56e+03 -0.0518 1.51e-10\n", "V_corr= -339.64076\n", "ibin= 4386 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 5.8 102.4 0.012 0.036 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+04 -0.392 6.23e-10\n", "V_corr= -327.02257\n", "ibin= 4387 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 -8.0 121.2 0.021 0.024 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 -0.191 1.35e-10\n", "V_corr= -340.83340\n", "ibin= 4388 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 7.3 147.2 -0.069 0.029 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 0.355 1.02e-10\n", "V_corr= -325.46385\n", "ibin= 4389 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 8.2 204.4 0.036 0.024 0.000 0.000 0.427 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.201 8.61e-10\n", "V_corr= -324.61615\n", "ibin= 4390 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 8.8 175.1 0.019 0.035 0.000 0.000 0.450 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.133 6.31e-10\n", "V_corr= -324.04311\n", "ibin= 4391 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 6.0 103.9 0.021 0.028 0.000 0.000 0.317 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.634 3.91e-10\n", "V_corr= -326.84219\n", "ibin= 4392 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 97 11.7 200.9 0.040 0.002 0.000 0.000 0.385 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+04 -0.256 3.68e-10\n", "V_corr= -321.14576\n", "ibin= 4393 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 12.1 172.6 0.016 0.015 0.000 0.000 0.648 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.254 4.76e-10\n", "V_corr= -320.66200\n", "ibin= 4394 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 53.8 108.2 -0.012 -0.008 0.000 0.000 0.556 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.357 4.46e-10\n", "V_corr= -278.97410\n", "ibin= 4395 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 226 52.0 222.1 0.019 0.075 0.000 0.000 0.487 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.166 4.00e-10\n", "V_corr= -280.77534\n", "ibin= 4396 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 100.5 239.3 -0.071 -0.015 0.000 0.000 0.465 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.211 3.88e-10\n", "V_corr= -232.27844\n", "ibin= 4397 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 224 85.5 248.5 -0.014 0.001 0.000 0.000 0.372 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.414 4.54e-10\n", "V_corr= -247.28786\n", "ibin= 4398 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 77.7 139.4 -0.003 -0.009 0.000 0.000 0.459 NaN\n", "Ages, Metallicities, Weights:\n", " 6.59e+03 -0.910 7.59e-11\n", "V_corr= -255.13768\n", "ibin= 4399 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 125.8 112.1 0.009 -0.008 0.000 0.000 0.601 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.397 2.59e-10\n", "V_corr= -207.01856\n", "ibin= 4400 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 176.5 190.0 0.048 0.007 0.000 0.000 0.325 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.263 3.00e-10\n", "V_corr= -156.27417\n", "ibin= 4401 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 95.4 129.7 0.012 0.003 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.664 1.88e-10\n", "V_corr= -237.38020\n", "ibin= 4402 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 91.6 200.6 0.005 -0.032 0.000 0.000 0.553 NaN\n", "Ages, Metallicities, Weights:\n", " 558. 0.557 1.87e-11\n", "V_corr= -241.19439\n", "ibin= 4403 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 55.2 46.0 0.006 -0.006 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.86e+04 -0.664 1.72e-10\n", "V_corr= -277.55897\n", "ibin= 4404 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 21.9 286.7 0.101 0.005 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.568 5.24e-10\n", "V_corr= -310.93128\n", "ibin= 4405 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 99.9 124.1 0.024 0.013 0.000 0.000 0.392 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.403 2.53e-10\n", "V_corr= -232.94627\n", "ibin= 4406 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 46.7 184.0 -0.021 -0.047 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 1.22e+03 0.374 3.52e-11\n", "V_corr= -286.07050\n", "ibin= 4407 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 144.6 194.2 0.006 -0.047 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.16e+03 0.355 3.32e-11\n", "V_corr= -188.22511\n", "ibin= 4408 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 78.0 124.4 0.025 0.002 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 2.88e+03 -0.137 5.75e-11\n", "V_corr= -254.84812\n", "ibin= 4409 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 56.1 35.1 -0.001 0.001 0.000 0.000 0.439 NaN\n", "Ages, Metallicities, Weights:\n", " 1.42e+03 -0.501 2.01e-11\n", "V_corr= -276.73441\n", "ibin= 4410 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 109.4 145.5 -0.015 0.001 0.000 0.000 0.344 NaN\n", "Ages, Metallicities, Weights:\n", " 586. 0.317 1.33e-11\n", "V_corr= -223.39534\n", "ibin= 4411 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 74.1 136.0 0.049 -0.016 0.000 0.000 0.440 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+03 -0.127 2.65e-11\n", "V_corr= -258.67214\n", "ibin= 4412 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 78.4 72.3 0.008 0.002 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 2.27e+03 -0.252 4.10e-11\n", "V_corr= -254.40238\n", "ibin= 4413 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 521 100.9 197.9 0.001 -0.016 0.000 0.000 0.307 NaN\n", "Ages, Metallicities, Weights:\n", " 1.02e+03 0.657 3.74e-11\n", "V_corr= -231.93955\n", "ibin= 4414 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 227 211.8 268.1 0.097 0.010 0.000 0.000 0.428 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0470 2.98e-10\n", "V_corr= -120.98800\n", "ibin= 4415 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 63.3 199.9 -0.005 -0.011 0.000 0.000 0.325 NaN\n", "Ages, Metallicities, Weights:\n", " 1.36e+03 0.593 3.99e-11\n", "V_corr= -269.49863\n", "ibin= 4416 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4417 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4418 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4419 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -58.8 172.5 0.038 0.022 0.000 0.000 0.579 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 0.181 2.03e-10\n", "V_corr= -391.58490\n", "ibin= 4420 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -53.6 135.1 0.008 0.010 0.000 0.000 0.686 NaN\n", "Ages, Metallicities, Weights:\n", " 8.24e+03 -0.231 3.52e-10\n", "V_corr= -386.44127\n", "ibin= 4421 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 479 -35.5 86.7 0.004 0.025 0.000 0.000 2.138 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+04 -0.774 3.74e-10\n", "V_corr= -368.33512\n", "ibin= 4422 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -34.1 94.7 0.005 0.035 0.000 0.000 0.828 NaN\n", "Ages, Metallicities, Weights:\n", " 3.36e+03 -0.381 1.57e-10\n", "V_corr= -366.86303\n", "ibin= 4423 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 259 -43.1 180.5 0.087 -0.005 0.000 0.000 1.240 NaN\n", "Ages, Metallicities, Weights:\n", " 2.08e+03 0.472 1.89e-10\n", "V_corr= -375.86927\n", "ibin= 4424 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -57.2 132.8 -0.016 -0.009 0.000 0.000 0.955 NaN\n", "Ages, Metallicities, Weights:\n", " 3.72e+03 -0.0649 2.27e-10\n", "V_corr= -389.99592\n", "ibin= 4425 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -58.0 182.3 0.027 -0.070 0.000 0.000 1.265 NaN\n", "Ages, Metallicities, Weights:\n", " 1.17e+04 -0.0880 6.18e-10\n", "V_corr= -390.84832\n", "ibin= 4426 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -93.7 129.0 -0.011 0.019 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 4.74e+03 -0.225 2.62e-10\n", "V_corr= -426.55034\n", "ibin= 4427 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 -68.5 115.4 0.081 -0.039 0.000 0.000 0.715 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.360 8.03e-10\n", "V_corr= -401.27522\n", "ibin= 4428 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -71.4 147.8 0.061 0.059 0.000 0.000 0.773 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0594 9.59e-10\n", "V_corr= -404.23426\n", "ibin= 4429 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -43.8 140.0 0.008 0.015 0.000 0.000 1.006 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 -0.417 6.90e-10\n", "V_corr= -376.58735\n", "ibin= 4430 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -50.6 163.8 -0.018 0.028 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.172 1.18e-09\n", "V_corr= -383.45793\n", "ibin= 4431 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -35.9 139.9 0.002 0.050 0.000 0.000 0.775 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.110 9.96e-10\n", "V_corr= -368.66917\n", "ibin= 4432 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 283 -27.5 120.5 0.009 0.057 0.000 0.000 0.771 NaN\n", "Ages, Metallicities, Weights:\n", " 3.92e+03 0.234 3.25e-10\n", "V_corr= -360.29847\n", "ibin= 4433 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -35.4 113.1 -0.024 0.013 0.000 0.000 0.722 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.426 8.09e-10\n", "V_corr= -368.22754\n", "ibin= 4434 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -31.4 123.1 -0.054 0.028 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 5.13e+03 -0.223 3.18e-10\n", "V_corr= -364.21572\n", "ibin= 4435 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 -50.2 128.0 0.007 0.090 0.000 0.000 0.774 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 0.609 1.72e-10\n", "V_corr= -383.03667\n", "ibin= 4436 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 95 -19.3 117.8 -0.011 0.040 0.000 0.000 0.625 NaN\n", "Ages, Metallicities, Weights:\n", " 2.51e+03 -0.107 1.80e-10\n", "V_corr= -352.10196\n", "ibin= 4437 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -46.5 136.5 -0.072 0.004 0.000 0.000 0.670 NaN\n", "Ages, Metallicities, Weights:\n", " 1.37e+03 0.611 1.69e-10\n", "V_corr= -379.32557\n", "ibin= 4438 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -45.2 107.8 0.040 -0.006 0.000 0.000 0.687 NaN\n", "Ages, Metallicities, Weights:\n", " 5.46e+03 -0.201 3.62e-10\n", "V_corr= -378.04794\n", "ibin= 4439 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -59.3 116.0 0.008 0.002 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 4.63e+03 -0.344 2.88e-10\n", "V_corr= -392.12378\n", "ibin= 4440 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -18.3 105.3 0.033 0.062 0.000 0.000 0.608 NaN\n", "Ages, Metallicities, Weights:\n", " 4.40e+03 -0.214 2.91e-10\n", "V_corr= -351.11794\n", "ibin= 4441 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 -26.4 176.2 0.066 0.108 0.000 0.000 0.438 NaN\n", "Ages, Metallicities, Weights:\n", " 3.78e+03 0.564 4.55e-10\n", "V_corr= -359.20773\n", "ibin= 4442 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 -43.6 125.6 0.037 0.071 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 7.56e+03 -0.0331 5.10e-10\n", "V_corr= -376.41642\n", "ibin= 4443 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -37.7 110.5 -0.044 0.002 0.000 0.000 0.489 NaN\n", "Ages, Metallicities, Weights:\n", " 2.53e+03 -0.0726 1.81e-10\n", "V_corr= -370.49278\n", "ibin= 4444 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 136 -52.3 150.2 0.014 -0.020 0.000 0.000 0.434 NaN\n", "Ages, Metallicities, Weights:\n", " 860. 0.533 8.34e-11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -385.07202\n", "ibin= 4445 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -31.9 183.7 0.092 -0.053 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 2.79e+03 0.146 2.14e-10\n", "V_corr= -364.75467\n", "ibin= 4446 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -12.1 137.4 0.023 -0.003 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 1.26e+04 -0.155 6.18e-10\n", "V_corr= -344.94164\n", "ibin= 4447 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -45.7 152.2 0.087 0.014 0.000 0.000 0.354 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.224 8.69e-10\n", "V_corr= -378.51919\n", "ibin= 4448 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -6.3 138.6 -0.012 0.006 0.000 0.000 0.659 NaN\n", "Ages, Metallicities, Weights:\n", " 5.67e+03 -0.249 3.05e-10\n", "V_corr= -339.10482\n", "ibin= 4449 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 35.6 151.9 0.016 -0.023 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 -0.160 1.48e-10\n", "V_corr= -297.20847\n", "ibin= 4450 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -14.7 159.4 -0.035 0.098 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0443 8.28e-10\n", "V_corr= -347.48012\n", "ibin= 4451 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 72 9.3 112.8 0.038 0.044 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 4.90e+03 -0.263 2.27e-10\n", "V_corr= -323.53343\n", "ibin= 4452 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 -10.0 158.8 0.040 0.020 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 6.15e+03 -0.0642 3.09e-10\n", "V_corr= -342.84503\n", "ibin= 4453 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 84 -3.6 115.1 0.002 0.031 0.000 0.000 0.382 NaN\n", "Ages, Metallicities, Weights:\n", " 7.86e+03 -0.0309 4.15e-10\n", "V_corr= -336.39929\n", "ibin= 4454 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 31.6 137.4 0.034 0.071 0.000 0.000 0.390 NaN\n", "Ages, Metallicities, Weights:\n", " 9.53e+03 0.102 5.42e-10\n", "V_corr= -301.22449\n", "ibin= 4455 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 37.6 131.0 0.103 0.051 0.000 0.000 0.763 NaN\n", "Ages, Metallicities, Weights:\n", " 1.39e+03 0.689 1.32e-10\n", "V_corr= -295.24209\n", "ibin= 4456 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 20.7 106.6 0.045 0.025 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.91e+03 -0.281 8.37e-11\n", "V_corr= -312.13208\n", "ibin= 4457 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 16.4 128.5 -0.017 0.053 0.000 0.000 0.626 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.167 6.31e-10\n", "V_corr= -316.37374\n", "ibin= 4458 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 37.4 171.6 0.011 0.066 0.000 0.000 0.607 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.103 7.33e-10\n", "V_corr= -295.40230\n", "ibin= 4459 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 56.1 220.5 0.048 0.089 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 2.99e+03 0.354 1.64e-10\n", "V_corr= -276.68135\n", "ibin= 4460 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 33.1 120.0 -0.033 0.038 0.000 0.000 0.493 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.323 4.17e-10\n", "V_corr= -299.75741\n", "ibin= 4461 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 228 5.9 86.5 0.021 0.031 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.343 4.10e-10\n", "V_corr= -326.92338\n", "ibin= 4462 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 61.8 89.8 0.040 0.020 0.000 0.000 0.336 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.393 3.87e-10\n", "V_corr= -271.04286\n", "ibin= 4463 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 43.5 85.3 0.008 0.006 0.000 0.000 0.516 NaN\n", "Ages, Metallicities, Weights:\n", " 1.95e+03 -0.826 3.55e-11\n", "V_corr= -289.34872\n", "ibin= 4464 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 73.2 148.4 0.047 0.015 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.307 3.28e-10\n", "V_corr= -259.56184\n", "ibin= 4465 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 213 147.0 283.8 -0.039 0.060 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.41e+04 0.270 3.28e-10\n", "V_corr= -185.77233\n", "ibin= 4466 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 85.3 213.7 -0.011 0.004 0.000 0.000 0.363 NaN\n", "Ages, Metallicities, Weights:\n", " 774. 0.419 2.16e-11\n", "V_corr= -247.47968\n", "ibin= 4467 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 68.2 256.0 -0.024 -0.002 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.329 3.91e-10\n", "V_corr= -264.62418\n", "ibin= 4468 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 49.7 179.9 0.001 0.017 0.000 0.000 0.568 NaN\n", "Ages, Metallicities, Weights:\n", " 1.74e+04 -0.192 2.64e-10\n", "V_corr= -283.09722\n", "ibin= 4469 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 62.8 93.1 -0.015 0.005 0.000 0.000 0.421 NaN\n", "Ages, Metallicities, Weights:\n", " 1.31e+04 -0.238 2.12e-10\n", "V_corr= -270.05780\n", "ibin= 4470 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 252 24.1 150.8 0.071 0.044 0.000 0.000 0.387 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+03 0.689 4.69e-11\n", "V_corr= -308.69327\n", "ibin= 4471 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 114.1 202.8 0.040 0.007 0.000 0.000 0.578 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.247 4.17e-10\n", "V_corr= -218.71822\n", "ibin= 4472 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 196 127.3 182.4 0.038 -0.047 0.000 0.000 0.597 NaN\n", "Ages, Metallicities, Weights:\n", " 2.60e+03 -0.412 5.01e-11\n", "V_corr= -205.49294\n", "ibin= 4473 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 131 43.4 103.9 0.024 -0.002 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.63e+03 -0.373 2.21e-11\n", "V_corr= -289.40243\n", "ibin= 4474 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 230 72.0 81.6 0.005 0.003 0.000 0.000 0.524 NaN\n", "Ages, Metallicities, Weights:\n", " 1.59e+03 -0.643 2.64e-11\n", "V_corr= -260.83583\n", "ibin= 4475 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 429 2.9 152.9 0.000 0.008 0.000 0.000 0.677 NaN\n", "Ages, Metallicities, Weights:\n", " 996. -0.00956 2.25e-11\n", "V_corr= -329.91296\n", "ibin= 4476 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 119 59.5 149.4 0.018 0.029 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+03 0.634 4.44e-11\n", "V_corr= -273.30921\n", "ibin= 4477 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 28.4 82.7 0.013 -0.022 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 673. 0.689 2.27e-11\n", "V_corr= -304.42444\n", "ibin= 4478 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 59.1 107.1 0.026 -0.000 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 7.02e+03 -0.00330 1.20e-10\n", "V_corr= -273.67999\n", "ibin= 4479 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 32.5 133.3 0.008 0.013 0.000 0.000 0.359 NaN\n", "Ages, Metallicities, Weights:\n", " 1.97e+04 -0.273 2.47e-10\n", "V_corr= -300.35563\n", "ibin= 4480 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 265 50.3 211.4 0.032 -0.016 0.000 0.000 0.349 NaN\n", "Ages, Metallicities, Weights:\n", " 650. 0.598 1.97e-11\n", "V_corr= -282.49798\n", "ibin= 4481 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 23.6 131.8 0.036 -0.003 0.000 0.000 0.464 NaN\n", "Ages, Metallicities, Weights:\n", " 579. 0.626 1.86e-11\n", "V_corr= -309.20379\n", "ibin= 4482 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 45.5 113.9 -0.012 0.008 0.000 0.000 0.558 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.449 2.21e-10\n", "V_corr= -287.32074\n", "ibin= 4483 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 122.7 25.0 -0.000 -0.001 0.000 0.000 0.364 NaN\n", "Ages, Metallicities, Weights:\n", " 852. -0.782 1.79e-11\n", "V_corr= -210.06740\n", "ibin= 4484 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 106.6 143.0 -0.038 0.048 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.179 2.54e-10\n", "V_corr= -226.16119\n", "ibin= 4485 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4486 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4487 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4488 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -52.7 117.4 -0.064 0.029 0.000 0.000 0.635 NaN\n", "Ages, Metallicities, Weights:\n", " 2.66e+03 -0.195 1.32e-10\n", "V_corr= -385.54340\n", "ibin= 4489 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -41.6 232.3 0.111 -0.074 0.000 0.000 0.709 NaN\n", "Ages, Metallicities, Weights:\n", " 6.47e+03 0.149 4.27e-10\n", "V_corr= -374.44750\n", "ibin= 4490 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 140 -59.8 158.7 0.014 0.001 0.000 0.000 0.802 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+04 -0.421 5.33e-10\n", "V_corr= -392.57442\n", "ibin= 4491 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 207 -50.6 168.9 0.066 0.041 0.000 0.000 1.326 NaN\n", "Ages, Metallicities, Weights:\n", " 1.79e+04 -0.193 7.17e-10\n", "V_corr= -383.36360\n", "ibin= 4492 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 191 -78.3 195.1 -0.009 0.014 0.000 0.000 0.997 NaN\n", "Ages, Metallicities, Weights:\n", " 4.39e+03 0.469 3.84e-10\n", "V_corr= -411.11545\n", "ibin= 4493 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -56.5 100.2 0.019 -0.026 0.000 0.000 0.703 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.575 6.17e-10\n", "V_corr= -389.35475\n", "ibin= 4494 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 125 -44.8 130.1 -0.083 0.039 0.000 0.000 0.577 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+03 0.626 1.14e-10\n", "V_corr= -377.64870\n", "ibin= 4495 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 284 -99.4 158.5 -0.037 0.057 0.000 0.000 1.017 NaN\n", "Ages, Metallicities, Weights:\n", " 1.09e+03 0.553 9.71e-11\n", "V_corr= -432.21188\n", "ibin= 4496 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -28.7 151.8 0.024 0.029 0.000 0.000 1.479 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.287 8.09e-10\n", "V_corr= -361.46755\n", "ibin= 4497 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -49.5 116.3 -0.043 0.030 0.000 0.000 0.611 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.553 6.35e-10\n", "V_corr= -382.26454\n", "ibin= 4498 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -30.8 112.9 -0.042 0.030 0.000 0.000 0.810 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.317 7.97e-10\n", "V_corr= -363.62696\n", "ibin= 4499 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 -64.4 122.8 0.000 0.066 0.000 0.000 1.012 NaN\n", "Ages, Metallicities, Weights:\n", " 6.29e+03 -0.0117 4.02e-10\n", "V_corr= -397.17040\n", "ibin= 4500 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 102 -45.3 127.1 0.012 -0.003 0.000 0.000 0.653 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.318 8.50e-10\n", "V_corr= -378.11319\n", "ibin= 4501 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -44.8 141.6 0.004 0.022 0.000 0.000 0.523 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0617 1.08e-09\n", "V_corr= -377.63563\n", "ibin= 4502 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 -44.1 127.1 -0.025 -0.018 0.000 0.000 0.924 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.362 8.35e-10\n", "V_corr= -376.86300\n", "ibin= 4503 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -28.5 140.4 0.030 0.092 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 2.80e+03 0.163 2.12e-10\n", "V_corr= -361.26496\n", "ibin= 4504 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 -28.6 153.9 -0.044 0.081 0.000 0.000 0.773 NaN\n", "Ages, Metallicities, Weights:\n", " 3.05e+03 0.423 2.87e-10\n", "V_corr= -361.45726\n", "ibin= 4505 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 -16.6 132.5 0.026 0.035 0.000 0.000 0.765 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 9.28e-10\n", "V_corr= -349.40260\n", "ibin= 4506 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -25.8 133.1 -0.022 0.024 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 4.92e+03 -0.111 3.27e-10\n", "V_corr= -358.56697\n", "ibin= 4507 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -10.8 142.0 0.025 0.012 0.000 0.000 0.388 NaN\n", "Ages, Metallicities, Weights:\n", " 5.68e+03 -0.261 3.63e-10\n", "V_corr= -343.58044\n", "ibin= 4508 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 -43.1 126.7 0.021 0.058 0.000 0.000 0.685 NaN\n", "Ages, Metallicities, Weights:\n", " 2.58e+03 5.75e-05 1.95e-10\n", "V_corr= -375.94579\n", "ibin= 4509 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -21.4 121.4 -0.002 0.034 0.000 0.000 0.946 NaN\n", "Ages, Metallicities, Weights:\n", " 2.02e+03 0.00770 1.52e-10\n", "V_corr= -354.21711\n", "ibin= 4510 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 -43.6 155.4 0.009 0.071 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.57e+03 0.537 1.62e-10\n", "V_corr= -376.38572\n", "ibin= 4511 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -18.6 98.8 -0.040 -0.000 0.000 0.000 0.514 NaN\n", "Ages, Metallicities, Weights:\n", " 2.67e+03 -0.134 1.78e-10\n", "V_corr= -351.44493\n", "ibin= 4512 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -37.8 140.5 0.037 0.062 0.000 0.000 0.526 NaN\n", "Ages, Metallicities, Weights:\n", " 2.40e+03 0.385 2.07e-10\n", "V_corr= -370.57469\n", "ibin= 4513 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -22.6 136.7 0.006 0.083 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.158 7.99e-10\n", "V_corr= -355.45310\n", "ibin= 4514 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 9.3 127.9 0.056 0.016 0.000 0.000 0.495 NaN\n", "Ages, Metallicities, Weights:\n", " 1.61e+04 -0.376 6.11e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -323.54334\n", "ibin= 4515 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -31.5 120.3 -0.004 0.024 0.000 0.000 0.539 NaN\n", "Ages, Metallicities, Weights:\n", " 2.43e+03 0.110 1.68e-10\n", "V_corr= -364.33289\n", "ibin= 4516 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 3.1 135.9 -0.043 0.005 0.000 0.000 0.331 NaN\n", "Ages, Metallicities, Weights:\n", " 2.49e+03 -0.0681 1.50e-10\n", "V_corr= -329.74048\n", "ibin= 4517 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -2.1 138.8 0.002 0.005 0.000 0.000 0.500 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+04 -0.0953 6.42e-10\n", "V_corr= -334.89754\n", "ibin= 4518 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -12.6 131.2 0.068 0.030 0.000 0.000 0.467 NaN\n", "Ages, Metallicities, Weights:\n", " 3.07e+03 0.00551 1.78e-10\n", "V_corr= -345.41202\n", "ibin= 4519 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 82 -8.0 123.7 -0.047 0.024 0.000 0.000 0.510 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.230 7.89e-10\n", "V_corr= -340.77373\n", "ibin= 4520 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 14.8 115.2 0.008 -0.003 0.000 0.000 0.399 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.184 8.10e-10\n", "V_corr= -317.96910\n", "ibin= 4521 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -2.3 135.4 0.002 0.044 0.000 0.000 0.424 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.200 7.29e-10\n", "V_corr= -335.13636\n", "ibin= 4522 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 0.6 110.1 -0.011 0.053 0.000 0.000 0.499 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.232 7.38e-10\n", "V_corr= -332.16060\n", "ibin= 4523 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 181 -13.1 140.9 0.032 0.048 0.000 0.000 0.657 NaN\n", "Ages, Metallicities, Weights:\n", " 5.24e+03 -0.197 2.41e-10\n", "V_corr= -345.93065\n", "ibin= 4524 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 10.3 146.2 -0.056 0.026 0.000 0.000 0.638 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.124 6.82e-10\n", "V_corr= -322.48803\n", "ibin= 4525 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 12.3 122.5 0.067 0.045 0.000 0.000 0.576 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.499 4.42e-10\n", "V_corr= -320.54715\n", "ibin= 4526 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 360 26.9 158.2 0.030 0.065 0.000 0.000 0.408 NaN\n", "Ages, Metallicities, Weights:\n", " 1.38e+03 0.689 1.08e-10\n", "V_corr= -305.92328\n", "ibin= 4527 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 14.0 135.4 0.077 0.007 0.000 0.000 0.503 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.292 5.81e-10\n", "V_corr= -318.76161\n", "ibin= 4528 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 9.8 161.5 0.053 0.062 0.000 0.000 0.432 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0409 6.02e-10\n", "V_corr= -323.00703\n", "ibin= 4529 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 12.6 159.9 0.000 0.038 0.000 0.000 0.482 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.229 4.26e-10\n", "V_corr= -320.17341\n", "ibin= 4530 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 81 7.7 152.6 0.064 0.023 0.000 0.000 0.409 NaN\n", "Ages, Metallicities, Weights:\n", " 1.18e+03 0.654 5.42e-11\n", "V_corr= -325.15685\n", "ibin= 4531 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 60.5 184.0 0.078 0.029 0.000 0.000 0.517 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.642 9.63e-10\n", "V_corr= -272.32666\n", "ibin= 4532 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 48.8 118.1 -0.026 0.023 0.000 0.000 0.747 NaN\n", "Ages, Metallicities, Weights:\n", " 3.21e+03 -0.126 7.55e-11\n", "V_corr= -284.04583\n", "ibin= 4533 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 272 69.8 217.1 0.072 0.067 0.000 0.000 0.335 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.650 7.70e-10\n", "V_corr= -262.97140\n", "ibin= 4534 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 26.8 190.8 -0.009 -0.008 0.000 0.000 0.452 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.320 2.75e-10\n", "V_corr= -306.03465\n", "ibin= 4535 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 160 30.8 26.3 0.001 -0.001 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.37 1.66e-10\n", "V_corr= -302.03336\n", "ibin= 4536 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 86 6.7 189.0 0.001 -0.018 0.000 0.000 0.436 NaN\n", "Ages, Metallicities, Weights:\n", " 2.03e+03 -0.382 3.45e-11\n", "V_corr= -326.08283\n", "ibin= 4537 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 119.7 188.6 0.006 -0.018 0.000 0.000 0.410 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0679 3.87e-10\n", "V_corr= -213.13766\n", "ibin= 4538 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 24.5 71.1 0.015 -0.005 0.000 0.000 0.480 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.07 1.71e-10\n", "V_corr= -308.30266\n", "ibin= 4539 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 172 114.3 124.5 -0.022 -0.018 0.000 0.000 0.292 NaN\n", "Ages, Metallicities, Weights:\n", " 1.50e+03 -0.362 2.60e-11\n", "V_corr= -218.49003\n", "ibin= 4540 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 82.8 166.4 -0.038 0.050 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.425 4.35e-10\n", "V_corr= -250.00451\n", "ibin= 4541 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 139.1 179.9 0.009 -0.027 0.000 0.000 0.473 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.756 1.85e-10\n", "V_corr= -193.73701\n", "ibin= 4542 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 173 32.4 27.2 -0.001 -0.002 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.19 1.77e-10\n", "V_corr= -300.44289\n", "ibin= 4543 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 96 68.3 99.5 -0.022 -0.006 0.000 0.000 0.527 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.580 2.23e-10\n", "V_corr= -264.47152\n", "ibin= 4544 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 34.6 25.0 0.002 -0.002 0.000 0.000 0.723 NaN\n", "Ages, Metallicities, Weights:\n", " 1.83e+03 -0.809 3.78e-11\n", "V_corr= -298.17486\n", "ibin= 4545 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 151 39.3 30.5 0.001 0.001 0.000 0.000 0.507 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -1.15 1.72e-10\n", "V_corr= -293.54223\n", "ibin= 4546 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 207 39.2 92.0 -0.025 0.003 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.10e+03 0.0820 2.11e-11\n", "V_corr= -293.65235\n", "ibin= 4547 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 24.5 113.8 0.010 0.011 0.000 0.000 0.433 NaN\n", "Ages, Metallicities, Weights:\n", " 8.62e+03 -1.05 7.91e-11\n", "V_corr= -308.32037\n", "ibin= 4548 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 24.9 228.7 -0.011 -0.048 0.000 0.000 0.370 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0994 3.51e-10\n", "V_corr= -307.86971\n", "ibin= 4549 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 168.7 202.9 0.017 0.010 0.000 0.000 0.320 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.00744 2.71e-10\n", "V_corr= -164.09789\n", "ibin= 4550 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 164 2.5 92.0 0.013 -0.003 0.000 0.000 0.377 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+03 -0.425 1.73e-11\n", "V_corr= -330.30126\n", "ibin= 4551 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 116.1 172.5 0.018 -0.025 0.000 0.000 0.426 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0768 2.93e-10\n", "V_corr= -216.70326\n", "ibin= 4552 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 149.9 99.9 0.003 0.002 0.000 0.000 0.779 NaN\n", "Ages, Metallicities, Weights:\n", " 1.46e+03 -0.407 2.14e-11\n", "V_corr= -182.87933\n", "ibin= 4553 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 130.1 25.0 -0.000 -0.000 0.000 0.000 0.619 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 -1.11 1.64e-10\n", "V_corr= -202.68160\n", "ibin= 4554 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4555 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4556 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4557 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 -51.3 100.7 -0.012 0.015 0.000 0.000 0.644 NaN\n", "Ages, Metallicities, Weights:\n", " 1.66e+04 -0.626 4.44e-10\n", "V_corr= -384.06024\n", "ibin= 4558 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -33.9 99.0 -0.009 0.026 0.000 0.000 1.094 NaN\n", "Ages, Metallicities, Weights:\n", " 3.22e+03 -0.402 1.38e-10\n", "V_corr= -366.68637\n", "ibin= 4559 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -54.6 131.4 -0.035 0.076 0.000 0.000 0.699 NaN\n", "Ages, Metallicities, Weights:\n", " 1.55e+03 0.498 1.20e-10\n", "V_corr= -387.41336\n", "ibin= 4560 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -30.2 168.3 0.060 0.092 0.000 0.000 0.895 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0694 8.07e-10\n", "V_corr= -362.98005\n", "ibin= 4561 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " 117 -67.6 132.8 0.073 0.024 0.000 0.000 1.082 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.383 6.84e-10\n", "V_corr= -400.37947\n", "ibin= 4562 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -77.4 143.2 0.012 0.041 0.000 0.000 0.766 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.213 7.84e-10\n", "V_corr= -410.20700\n", "ibin= 4563 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -21.6 184.6 0.077 -0.023 0.000 0.000 0.940 NaN\n", "Ages, Metallicities, Weights:\n", " 4.93e+03 0.197 3.53e-10\n", "V_corr= -354.43510\n", "ibin= 4564 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -40.6 85.3 -0.012 0.008 0.000 0.000 0.885 NaN\n", "Ages, Metallicities, Weights:\n", " 2.20e+03 -0.222 1.25e-10\n", "V_corr= -373.42925\n", "ibin= 4565 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -61.4 186.4 0.018 0.033 0.000 0.000 0.739 NaN\n", "Ages, Metallicities, Weights:\n", " 7.84e+03 0.226 5.80e-10\n", "V_corr= -394.17366\n", "ibin= 4566 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 105 -77.1 181.4 -0.029 0.115 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.447 1.38e-09\n", "V_corr= -409.91329\n", "ibin= 4567 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 108 -45.7 76.7 -0.048 0.007 0.000 0.000 0.690 NaN\n", "Ages, Metallicities, Weights:\n", " 2.30e+03 -0.351 1.24e-10\n", "V_corr= -378.46913\n", "ibin= 4568 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -24.5 127.7 0.046 0.068 0.000 0.000 0.877 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.145 9.09e-10\n", "V_corr= -357.26973\n", "ibin= 4569 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -62.3 155.3 -0.002 0.042 0.000 0.000 0.794 NaN\n", "Ages, Metallicities, Weights:\n", " 4.51e+03 0.152 3.26e-10\n", "V_corr= -395.12222\n", "ibin= 4570 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -13.6 136.7 -0.001 0.057 0.000 0.000 1.024 NaN\n", "Ages, Metallicities, Weights:\n", " 7.11e+03 0.0441 4.69e-10\n", "V_corr= -346.37239\n", "ibin= 4571 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 208 -26.6 166.2 0.063 0.011 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 2.04e+03 0.480 2.02e-10\n", "V_corr= -359.38517\n", "ibin= 4572 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -31.9 143.1 -0.035 0.069 0.000 0.000 0.703 NaN\n", "Ages, Metallicities, Weights:\n", " 1.28e+04 -0.0875 6.59e-10\n", "V_corr= -364.68609\n", "ibin= 4573 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 147 -63.7 145.3 -0.003 0.029 0.000 0.000 0.705 NaN\n", "Ages, Metallicities, Weights:\n", " 3.17e+03 0.137 2.35e-10\n", "V_corr= -396.50526\n", "ibin= 4574 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -53.7 135.2 0.052 0.056 0.000 0.000 0.826 NaN\n", "Ages, Metallicities, Weights:\n", " 5.74e+03 -0.0887 3.60e-10\n", "V_corr= -386.52656\n", "ibin= 4575 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -15.6 115.8 -0.055 0.015 0.000 0.000 0.790 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.403 8.08e-10\n", "V_corr= -348.36117\n", "ibin= 4576 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -29.9 117.3 0.034 -0.021 0.000 0.000 0.501 NaN\n", "Ages, Metallicities, Weights:\n", " 3.77e+03 -0.402 2.41e-10\n", "V_corr= -362.70509\n", "ibin= 4577 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 299 -37.7 108.5 0.012 0.072 0.000 0.000 0.453 NaN\n", "Ages, Metallicities, Weights:\n", " 6.13e+03 -0.0698 3.93e-10\n", "V_corr= -370.48072\n", "ibin= 4578 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -31.2 174.3 -0.015 0.089 0.000 0.000 0.612 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.139 1.10e-09\n", "V_corr= -363.97612\n", "ibin= 4579 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 -14.7 168.9 -0.016 0.048 0.000 0.000 0.592 NaN\n", "Ages, Metallicities, Weights:\n", " 4.92e+03 -0.238 2.84e-10\n", "V_corr= -347.49835\n", "ibin= 4580 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -38.9 162.0 0.012 0.093 0.000 0.000 0.554 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.321 1.18e-09\n", "V_corr= -371.74813\n", "ibin= 4581 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 143 -13.6 166.9 -0.011 0.063 0.000 0.000 0.520 NaN\n", "Ages, Metallicities, Weights:\n", " 8.05e+03 0.176 5.29e-10\n", "V_corr= -346.39353\n", "ibin= 4582 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 226 0.3 175.9 0.037 0.083 0.000 0.000 0.412 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0701 8.72e-10\n", "V_corr= -332.52347\n", "ibin= 4583 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 -39.4 152.4 0.030 0.016 0.000 0.000 0.665 NaN\n", "Ages, Metallicities, Weights:\n", " 3.17e+03 0.282 2.38e-10\n", "V_corr= -372.21209\n", "ibin= 4584 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 83 -32.4 126.6 -0.018 0.021 0.000 0.000 0.411 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.197 8.03e-10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "V_corr= -365.20252\n", "ibin= 4585 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 -15.3 155.5 0.036 -0.010 0.000 0.000 0.445 NaN\n", "Ages, Metallicities, Weights:\n", " 4.38e+03 -0.250 2.13e-10\n", "V_corr= -348.10442\n", "ibin= 4586 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -26.2 97.1 0.015 0.012 0.000 0.000 0.468 NaN\n", "Ages, Metallicities, Weights:\n", " 1.44e+04 -0.542 4.44e-10\n", "V_corr= -358.99146\n", "ibin= 4587 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 -18.2 144.8 0.036 0.073 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.131 8.47e-10\n", "V_corr= -350.98037\n", "ibin= 4588 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 169 -9.6 96.7 0.034 0.028 0.000 0.000 0.345 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.358 7.11e-10\n", "V_corr= -342.41240\n", "ibin= 4589 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 137 21.4 162.5 -0.066 -0.013 0.000 0.000 0.447 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 7.50e-10\n", "V_corr= -311.45386\n", "ibin= 4590 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -26.6 139.8 -0.044 0.004 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 6.49e+03 -0.107 3.00e-10\n", "V_corr= -359.44438\n", "ibin= 4591 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 85 1.1 164.7 0.018 0.028 0.000 0.000 0.347 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.148 7.22e-10\n", "V_corr= -331.72811\n", "ibin= 4592 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 138 -26.7 113.9 -0.061 -0.010 0.000 0.000 0.406 NaN\n", "Ages, Metallicities, Weights:\n", " 3.00e+03 -0.222 1.35e-10\n", "V_corr= -359.47225\n", "ibin= 4593 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 10.6 126.8 -0.047 0.009 0.000 0.000 0.584 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.350 5.63e-10\n", "V_corr= -322.23443\n", "ibin= 4594 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 15.1 103.2 -0.009 0.043 0.000 0.000 0.405 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+04 -0.194 3.18e-10\n", "V_corr= -317.67846\n", "ibin= 4595 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 183 25.2 131.6 -0.030 0.056 0.000 0.000 0.596 NaN\n", "Ages, Metallicities, Weights:\n", " 1.73e+04 -0.0796 5.63e-10\n", "V_corr= -307.62781\n", "ibin= 4596 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 208 26.3 198.9 0.039 -0.017 0.000 0.000 0.717 NaN\n", "Ages, Metallicities, Weights:\n", " 884. 0.689 6.19e-11\n", "V_corr= -306.46316\n", "ibin= 4597 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 104 84.8 111.4 0.002 -0.012 0.000 0.000 0.431 NaN\n", "Ages, Metallicities, Weights:\n", " 8.49e+03 -0.317 2.24e-10\n", "V_corr= -248.03992\n", "ibin= 4598 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 40.3 26.1 0.002 -0.002 0.000 0.000 0.706 NaN\n", "Ages, Metallicities, Weights:\n", " 2.12e+03 -0.757 5.88e-11\n", "V_corr= -292.50586\n", "ibin= 4599 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 93 40.9 133.0 0.021 -0.011 0.000 0.000 0.506 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.162 4.15e-10\n", "V_corr= -291.92812\n", "ibin= 4600 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 23.6 241.9 -0.033 0.054 0.000 0.000 0.786 NaN\n", "Ages, Metallicities, Weights:\n", " 6.50e+03 0.335 2.14e-10\n", "V_corr= -309.21966\n", "ibin= 4601 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 12.7 123.9 0.019 0.025 0.000 0.000 0.586 NaN\n", "Ages, Metallicities, Weights:\n", " 708. 0.488 2.13e-11\n", "V_corr= -320.09394\n", "ibin= 4602 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 229 66.8 204.6 0.055 -0.053 0.000 0.000 0.566 NaN\n", "Ages, Metallicities, Weights:\n", " 593. 0.674 1.99e-11\n", "V_corr= -265.99781\n", "ibin= 4603 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 250 54.6 197.2 0.021 0.022 0.000 0.000 0.461 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0121 3.01e-10\n", "V_corr= -278.21227\n", "ibin= 4604 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 170 60.4 225.4 -0.000 0.019 0.000 0.000 0.463 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.300 2.54e-10\n", "V_corr= -272.42553\n", "ibin= 4605 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 106 112.1 134.3 0.001 -0.013 0.000 0.000 0.535 NaN\n", "Ages, Metallicities, Weights:\n", " 1.54e+03 -0.995 2.19e-11\n", "V_corr= -220.71176\n", "ibin= 4606 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 56.5 60.1 0.016 -0.000 0.000 0.000 0.728 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.618 2.07e-10\n", "V_corr= -276.28265\n", "ibin= 4607 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 31.0 75.5 0.009 -0.008 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 1.06e+03 -0.0235 2.27e-11\n", "V_corr= -301.81223\n", "ibin= 4608 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 217 17.2 153.6 0.021 0.036 0.000 0.000 0.513 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.260 2.14e-10\n", "V_corr= -315.58644\n", "ibin= 4609 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 40.8 191.6 -0.028 -0.003 0.000 0.000 0.587 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.567 6.28e-10\n", "V_corr= -292.04579\n", "ibin= 4610 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 150 9.1 162.6 0.039 0.019 0.000 0.000 0.737 NaN\n", "Ages, Metallicities, Weights:\n", " 1.20e+04 -1.04 1.17e-10\n", "V_corr= -323.71180\n", "ibin= 4611 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 209 16.1 269.7 -0.011 -0.052 0.000 0.000 0.561 NaN\n", "Ages, Metallicities, Weights:\n", " 682. 0.427 1.82e-11\n", "V_corr= -316.75749\n", "ibin= 4612 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 373 148.6 204.6 0.009 0.025 0.000 0.000 0.573 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.357 2.60e-10\n", "V_corr= -184.19814\n", "ibin= 4613 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 56.8 146.1 -0.003 -0.038 0.000 0.000 0.346 NaN\n", "Ages, Metallicities, Weights:\n", " 1.52e+04 -0.432 2.10e-10\n", "V_corr= -276.05862\n", "ibin= 4614 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 217 143.5 208.1 0.015 -0.038 0.000 0.000 0.394 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.678 1.69e-10\n", "V_corr= -189.29256\n", "ibin= 4615 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 205 58.2 45.5 0.003 -0.004 0.000 0.000 0.472 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -1.30 1.27e-10\n", "V_corr= -274.65052\n", "ibin= 4616 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 55.2 28.7 -0.002 -0.002 0.000 0.000 0.402 NaN\n", "Ages, Metallicities, Weights:\n", " 1.84e+03 -0.849 2.67e-11\n", "V_corr= -277.58258\n", "ibin= 4617 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 109 104.8 174.2 0.006 -0.016 0.000 0.000 0.474 NaN\n", "Ages, Metallicities, Weights:\n", " 2.52e+03 -0.110 5.53e-11\n", "V_corr= -228.01757\n", "ibin= 4618 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 151.6 220.6 -0.019 -0.009 0.000 0.000 0.469 NaN\n", "Ages, Metallicities, Weights:\n", " 1.82e+04 -0.0694 2.99e-10\n", "V_corr= -181.23438\n", "ibin= 4619 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 194 38.8 163.8 0.027 0.008 0.000 0.000 0.383 NaN\n", "Ages, Metallicities, Weights:\n", " 847. 0.591 2.44e-11\n", "V_corr= -293.99341\n", "ibin= 4620 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 101.7 167.6 0.024 0.010 0.000 0.000 0.800 NaN\n", "Ages, Metallicities, Weights:\n", " 2.66e+03 0.447 7.39e-11\n", "V_corr= -231.06835\n", "ibin= 4621 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 110.4 134.8 -0.004 -0.008 0.000 0.000******** NaN\n", "Ages, Metallicities, Weights:\n", " 2.08e+03 -0.990 1.98e-11\n", "V_corr= -222.37706\n", "ibin= 4622 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4623 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4624 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4625 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4626 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -57.1 172.3 -0.062 -0.007 0.000 0.000 0.867 NaN\n", "Ages, Metallicities, Weights:\n", " 3.45e+03 0.420 2.50e-10\n", "V_corr= -389.93280\n", "ibin= 4627 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -87.1 133.9 0.047 0.016 0.000 0.000 1.024 NaN\n", "Ages, Metallicities, Weights:\n", " 1.34e+03 0.174 7.27e-11\n", "V_corr= -419.89766\n", "ibin= 4628 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -82.3 119.3 -0.033 -0.003 0.000 0.000 1.129 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.620 4.99e-10\n", "V_corr= -415.09219\n", "ibin= 4629 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -59.8 88.8 -0.036 -0.024 0.000 0.000 0.761 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 -0.378 1.26e-10\n", "V_corr= -392.58213\n", "ibin= 4630 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 218 -46.8 173.9 -0.048 0.055 0.000 0.000 1.202 NaN\n", "Ages, Metallicities, Weights:\n", " 1.70e+04 -0.298 6.03e-10\n", "V_corr= -379.55963\n", "ibin= 4631 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 129 -63.4 176.9 -0.008 0.074 0.000 0.000 1.112 NaN\n", "Ages, Metallicities, Weights:\n", " 3.80e+03 0.246 2.51e-10\n", "V_corr= -396.19795\n", "ibin= 4632 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -64.5 146.2 -0.021 0.047 0.000 0.000 0.681 NaN\n", "Ages, Metallicities, Weights:\n", " 2.53e+03 0.191 1.71e-10\n", "V_corr= -397.34941\n", "ibin= 4633 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -35.3 130.2 0.092 -0.002 0.000 0.000 0.599 NaN\n", "Ages, Metallicities, Weights:\n", " 1.56e+04 -0.560 4.96e-10\n", "V_corr= -368.12761\n", "ibin= 4634 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -63.1 121.1 0.009 0.057 0.000 0.000 0.839 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.303 7.32e-10\n", "V_corr= -395.87810\n", "ibin= 4635 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -55.6 139.3 -0.036 0.021 0.000 0.000 0.575 NaN\n", "Ages, Metallicities, Weights:\n", " 4.31e+03 0.102 2.82e-10\n", "V_corr= -388.39903\n", "ibin= 4636 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 226 -82.4 135.4 0.009 0.033 0.000 0.000 0.930 NaN\n", "Ages, Metallicities, Weights:\n", " 1.85e+03 0.0615 1.21e-10\n", "V_corr= -415.23545\n", "ibin= 4637 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 107 -68.6 141.5 -0.047 0.032 0.000 0.000 0.856 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0848 9.07e-10\n", "V_corr= -401.38837\n", "ibin= 4638 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -55.1 176.2 0.052 0.022 0.000 0.000 0.663 NaN\n", "Ages, Metallicities, Weights:\n", " 3.68e+03 0.486 3.46e-10\n", "V_corr= -387.86648\n", "ibin= 4639 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 162 -29.8 175.8 0.044 -0.062 0.000 0.000 0.605 NaN\n", "Ages, Metallicities, Weights:\n", " 1.24e+04 0.0649 7.69e-10\n", "V_corr= -362.61157\n", "ibin= 4640 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 117 -40.7 163.2 -0.012 0.053 0.000 0.000 0.838 NaN\n", "Ages, Metallicities, Weights:\n", " 2.76e+03 0.633 3.09e-10\n", "V_corr= -373.55169\n", "ibin= 4641 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 159 -37.6 119.0 -0.045 -0.017 0.000 0.000 0.796 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.453 7.12e-10\n", "V_corr= -370.40894\n", "ibin= 4642 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 -47.6 130.6 -0.006 -0.002 0.000 0.000 0.773 NaN\n", "Ages, Metallicities, Weights:\n", " 2.71e+03 0.0114 1.82e-10\n", "V_corr= -380.41918\n", "ibin= 4643 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 103 -20.0 121.8 -0.006 0.011 0.000 0.000 0.604 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.223 8.47e-10\n", "V_corr= -352.79250\n", "ibin= 4644 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 184 -8.1 97.5 0.008 0.026 0.000 0.000 0.441 NaN\n", "Ages, Metallicities, Weights:\n", " 3.01e+03 -0.0156 1.87e-10\n", "V_corr= -340.95805\n", "ibin= 4645 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -29.4 148.6 0.037 -0.022 0.000 0.000 0.613 NaN\n", "Ages, Metallicities, Weights:\n", " 2.84e+03 0.272 2.07e-10\n", "V_corr= -362.19005\n", "ibin= 4646 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 128 -32.3 158.0 0.018 -0.008 0.000 0.000 0.911 NaN\n", "Ages, Metallicities, Weights:\n", " 2.57e+03 -0.0519 1.56e-10\n", "V_corr= -365.15620\n", "ibin= 4647 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 163 -58.5 135.0 0.016 0.070 0.000 0.000 0.797 NaN\n", "Ages, Metallicities, Weights:\n", " 1.13e+03 0.635 1.06e-10\n", "V_corr= -391.33262\n", "ibin= 4648 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 127 -33.0 137.2 0.012 0.058 0.000 0.000 0.571 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.0221 8.53e-10\n", "V_corr= -365.81199\n", "ibin= 4649 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 152 -38.3 122.6 0.039 0.061 0.000 0.000 0.542 NaN\n", "Ages, Metallicities, Weights:\n", " 1.99e+03 0.366 1.60e-10\n", "V_corr= -371.14999\n", "ibin= 4650 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 141 -27.7 171.3 -0.046 0.118 0.000 0.000 0.757 NaN\n", "Ages, Metallicities, Weights:\n", " 1.78e+04 0.246 1.01e-09\n", "V_corr= -360.52838\n", "ibin= 4651 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 171 18.1 190.5 0.090 0.104 0.000 0.000 0.591 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0161 8.63e-10\n", "V_corr= -314.67401\n", "ibin= 4652 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 283 -13.7 136.9 0.056 0.067 0.000 0.000 0.443 NaN\n", "Ages, Metallicities, Weights:\n", " 4.14e+03 0.0678 2.16e-10\n", "V_corr= -346.52841\n", "ibin= 4653 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 148 -15.8 180.6 -0.007 0.058 0.000 0.000 0.477 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.196 8.70e-10\n", "V_corr= -348.63744\n", "ibin= 4654 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 149 -29.5 136.1 -0.050 0.026 0.000 0.000 0.489 NaN\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Ages, Metallicities, Weights:\n", " 6.42e+03 -0.133 3.11e-10\n", "V_corr= -362.30767\n", "ibin= 4655 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 126 -22.8 172.7 -0.044 -0.026 0.000 0.000 0.532 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.202 7.95e-10\n", "V_corr= -355.56540\n", "ibin= 4656 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 175 -3.5 117.4 -0.003 0.033 0.000 0.000 0.590 NaN\n", "Ages, Metallicities, Weights:\n", " 3.85e+03 -0.149 1.91e-10\n", "V_corr= -336.35823\n", "ibin= 4657 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 94 -19.0 146.5 0.053 0.029 0.000 0.000 0.559 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0167 7.94e-10\n", "V_corr= -351.77292\n", "ibin= 4658 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 139 -13.2 195.8 -0.064 0.048 0.000 0.000 0.583 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.205 8.12e-10\n", "V_corr= -346.05497\n", "ibin= 4659 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 115 30.3 119.6 0.034 0.018 0.000 0.000 0.429 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.442 5.12e-10\n", "V_corr= -302.55026\n", "ibin= 4660 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 114 18.4 184.4 0.000 -0.007 0.000 0.000 0.375 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.0929 7.38e-10\n", "V_corr= -314.45142\n", "ibin= 4661 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 118 4.1 67.1 0.005 0.010 0.000 0.000 0.550 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.514 4.49e-10\n", "V_corr= -328.68349\n", "ibin= 4662 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 130 -22.2 90.9 0.023 0.010 0.000 0.000 0.598 NaN\n", "Ages, Metallicities, Weights:\n", " 2.19e+03 -0.172 8.29e-11\n", "V_corr= -355.02495\n", "ibin= 4663 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 161 -4.6 164.3 0.016 -0.061 0.000 0.000 0.751 NaN\n", "Ages, Metallicities, Weights:\n", " 2.11e+03 -0.0512 8.03e-11\n", "V_corr= -337.41073\n", "ibin= 4664 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 92 13.6 172.6 0.033 0.015 0.000 0.000 1.787 NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 -0.149 4.71e-10\n", "V_corr= -319.21664\n", "ibin= 4665 / 4692\n", "Preparing templates: convolving...done; deriving...% PPXF_NBURSTS: MPFIT STATUS= 1\n", " feval V sigma h3 h4 h5 h6 c2/DOF SEDc2\n", " 116 25.9 247.5 -0.046 0.017 0.000 0.000******** NaN\n", "Ages, Metallicities, Weights:\n", " 1.98e+04 0.535 7.96e-10\n", "V_corr= -306.89620\n", "ibin= 4666 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4667 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4668 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4669 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4670 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4671 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4672 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4673 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4674 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4675 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4676 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4677 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4678 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4679 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4680 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4681 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4682 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4683 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4684 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4685 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4686 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4687 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4688 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4689 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4690 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4691 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "ibin= 4692 / 4692\n", "Preparing templates: convolving...done; deriving...ROBUST_SIGMA: This distribution is TOO WEIRD! Returning -1\n", "% PPXF_NBURSTS: MPFIT STATUS= -16\n", "% PPXF_NBURSTS: ERROR: parameter or function value(s) have become infinite;\n", " check model function for over- and underflow\n", "% PPXF_NBURSTS: EXITING NBURSTS WITH NaN results\n", "V_corr= NaN\n", "% CHECK_FITS: NAXIS keywords in FITS header have been updated\n", "% CHECK_FITS: BITPIX value of -64 added to FITS header\n", "% Compiled module: MWRFITS.\n", "% MWRFITS: Appending FITS extension to file\n", " /data/blaunet/fits/nburst_data/SN2/cube/30x30_MILES_fitted.fits\n", "% Compiled module: FXPARPOS.\n", "% Compiled module: DETABIFY.\n", "% Compiled module: SXADDHIST.\n", "% MWRFITS: Appending FITS extension to file\n", " /data/blaunet/fits/nburst_data/SN2/cube/30x30_MILES_fitted.fits\n", "% Program caused arithmetic error: Floating divide by 0\n", "% Program caused arithmetic error: Floating illegal operand\n", "...done\n" ] } ], "source": [ "SN2_fitter.run_fit()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Or load from previous" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "SN2_fitter = NburstFitter.from_previous(FITS_DIR/'nburst_data/SN2/cube/','30x30', fit_name = 'MILES')\n", "SN2_fitter.read_result()" ] }, { "cell_type": "code", "execution_count": 70, "metadata": {}, "outputs": [], "source": [ "x = np.arange(14, 2047, 30)\n", "y = np.arange(14, 2063, 30)\n", "xspl = UnivariateSpline(x, np.arange(x.shape[0]))\n", "x_center = xspl(SN2_ORCS.header['CRPIX1'])\n", "x_center_bis = xspl(SN2_ORCS.params.target_x)\n", "yspl = UnivariateSpline(y, np.arange(y.shape[0]))\n", "y_center = yspl(SN2_ORCS.header['CRPIX2'])\n", "y_center_bis = yspl(SN2_ORCS.params.target_y)\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Obtain a map" ] }, { "cell_type": "code", "execution_count": 123, "metadata": {}, "outputs": [], "source": [ "V_map = parameter_map(SN2_fitter.idl_result, 'V', SN2_fitter.bin_table)\n", "#map = parameter_map(SN2_fitter.idl_result, 'SIG', SN2_fitter.bin_table)\n", "\n", "f,ax = plot_map(V_map, colorbar=True, cmap='jet')#, vmax = 220, vmin = 60)\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Plot some fit" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "import matplotlib\n", "matplotlib.rcParams.update({'font.size': 14})" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "f,ax = plot_map(V_map, cmap='jet', colorbar=True, vmin = -600, vmax = 0)\n", "ax.scatter(x_center_bis, y_center_bis, marker='x', c='k')" ] }, { "cell_type": "code", "execution_count": 52, "metadata": {}, "outputs": [], "source": [ "def get_param_map(fit_params, p):\n", " p_map = np.zeros_like(fit_params, dtype=np.float64)\n", " \n", " for i,j in np.ndindex(p_map.shape):\n", "# if type(fit_params[i,j][p]) is np.ndarray:\n", "# p_map[i,j] = fit_params[i,j][p][0]\n", "# else:\n", " p_map[i,j] = fit_params[i,j][p]\n", " return p_map\n", " " ] }, { "cell_type": "code", "execution_count": 53, "metadata": {}, "outputs": [], "source": [ "V = get_param_map(fit_params, 'velocity')" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([], shape=(68, 69, 0), dtype=float64)" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fit_params" ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "(,\n", " )" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fig,ax = plot_spectra(SN2_ORCS.params.base_axis, wn_subtracted_cube[21,20])\n", "plot_spectra(SN2_ORCS.params.base_axis, f[1,0]['fitted_vector'], ax=ax)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "def measure_velocity(spec, cube, lines=['[OIII]5007']):\n", " from sitelle.fit import guess_source_velocity, refine_velocity_guess\n", " a = cube.params.base_axis\n", " try:\n", " v_guess, l = guess_source_velocity(spec, cube, lines=lines, force=True, return_line=True)\n", " except ValueError:\n", " return None\n", " try:\n", " coeff = np.nanmax(spec)\n", " v_guess = refine_velocity_guess(spec/coeff, a, v_guess, l)\n", " except Exception as e:\n", " print e\n", " pass\n", " return v_guess" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "V = np.apply_along_axis(measure_velocity, 2, wn_subtracted_cube[15:20, 15:20], SN2_ORCS)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([[-405.45247028, -448.41977745, -398.41977745, -414.84003026,\n", " -398.41977745],\n", " [-411.6222747 , -448.41977745, -408.42179198, -424.22726216,\n", " -414.71070668],\n", " [-448.41977745, -411.53210143, -448.41977745, -448.41977745,\n", " -398.41977745],\n", " [-422.72377551, -398.41977745, -448.41977745, -407.6430867 ,\n", " -410.28349198],\n", " [-448.41977745, -448.41977745, -406.52331072, -398.41977745,\n", " -425.91617774]])" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "V" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/plain": [ "Text(0.5,1,u'Gas Velocity Map')" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "f,ax = plot_map(SN2_velocity_map, cmap='jet', colorbar=True, vmin=-800)\n", "ax.set_title('Gas Velocity Map')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Analysis" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "x,y = 22,22\n", "f, ax = plt.subplots()\n", "make_wavelength_axes(ax, xlim=(6480,6835))\n", "ax.plot(SN3_fitter.axis, SN3_fitter.spectra[SN2_fitter.bin_table][x,y])\n", "ax.plot(SN3_fitter.axis, SN3_fitter.fitted_spectra[SN2_fitter.bin_table][x,y])\n", "ax.plot(SN3_fitter.axis, SN3_fitter.spectra[SN2_fitter.bin_table][x,y]-SN3_fitter.fitted_spectra[SN2_fitter.bin_table][x,y])\n", "add_lines_label(ax, 'SN3', [0., -600])" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Some Histograms" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "i = 0\n", "for x,y in np.argwhere(SN2_fitter.idl_result['AGE'][SN2_fitter.bin_table] < 2500):\n", " if x < 5 or y < 5:\n", " continue\n", " print x,y\n", " f, ax = plt.subplots()\n", " ax.plot(SN2_fitter.axis, SN2_fitter.spectra[x,y])\n", " ax.plot(SN2_fitter.axis, SN2_fitter.fitted_spectra[x,y])\n", " make_wavelength_axes(ax, xlim=(4825,5120))\n", " f.show()\n", " break" ] }, { "cell_type": "code", "execution_count": 158, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([ 8808.01150684, 19800.00006332, 37.01206881, ...,\n", " 19800.00006332, 19800.00006332, 19800.00006332])" ] }, "execution_count": 158, "metadata": {}, "output_type": "execute_result" } ], "source": [ "SN2_fitter.idl_result['AGE'][~np.isnan(SN2_fitter.idl_result['AGE'])]" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Fit Gas Lines" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def interpolator(spec, old_axis, new_axis):\n", " return UnivariateSpline(np.flip(1e8/old_axis,0), np.flip(spec,0), s=0, ext='zeros')(new_axis.astype(float))" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "collapsed": true }, "outputs": [], "source": [ "SN2_clean = SN2_48x48 - np.apply_along_axis(interpolator, -1, SN2_fitter.fitted_spectra, SN2_fitter.axis, SN2_axis)\n", "SN3_clean = SN3_48x48 - np.apply_along_axis(interpolator, -1, SN3_fitter.fitted_spectra[SN2_fitter.bin_table], SN3_fitter.axis, SN3_axis)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### SN2" ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "collapsed": true }, "outputs": [], "source": [ "SN2_theta_map = SN2_ORCS.get_theta_map()\n", "SN2_input_cube = np.zeros((SN2_clean.shape[0], SN2_clean.shape[1], 2), dtype=object)\n", "for x,y in np.ndindex(SN2_input_cube.shape[:2]):\n", " SN2_input_cube[x,y,:] = [SN2_clean[x,y,:], SN2_theta_map[x*48:(x+1)*48, y*48:(y+1)*48].mean()]" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "collapsed": true }, "outputs": [], "source": [ "lines = ['[OIII]5007', '[OIII]4959', 'Hbeta']\n", "kwargs={'fmodel':'sincgauss', 'pos_def':'1', 'sigma_cov':[gvar.gvar(30, 10)], 'sigma_def':['1']}\n", "\n", "SN2_ORCS._prepare_input_params(lines, nofilter=True, signal_range=[19550,20700], **kwargs)\n", "inputparams = SN2_ORCS.inputparams.convert()\n", "params = SN2_ORCS.params.convert()\n", "V_range = np.linspace(0,-600,7)\n", "#V_range = np.linspace(0,-500,6)\n", "snr_guess = None" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "collapsed": true }, "outputs": [], "source": [ "# x,y = 12,15\n", "# d = fit_gas_lines(SN2_input_cube[x,y,:], inputparams, params, lines, V_range, snr_guess=snr_guess)\n", "# display(d['fit_params'])\n", "# f, ax = plt.subplots()\n", "# ax.plot(1e8/SN2_axis, d['line_spectra'])\n", "# ax.plot(1e8/SN2_axis, SN2_clean[x,y])\n", "# make_wavelength_axes(ax, xlim=(4825, 5125))\n", "# add_lines_label(ax, 'SN2', -300.)\n", "# f.show()" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [], "source": [ "# out = parallel_apply_along_axis(fit_gas_lines, 2, SN2_input_cube,\n", "# inputparams,\n", "# params,\n", "# lines,\n", "# V_range,\n", "# #depfuncs=(),\n", "# #modules=('from sitelle.fit import parse_line_params, chi2_func',\n", "# # 'from orcs.utils import fit_lines_in_spectrum'),\n", "# snr_guess = snr_guess)" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "collapsed": true }, "outputs": [], "source": [ "# np.save('../fits/SN2_lines_20_11.npy', out)\n", "out = np.load('../fits/SN2_lines_20_11.npy')" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "SN2_velocity_map = np.zeros((43,43))\n", "gas_after_nburst_lines = np.zeros_like(SN2_clean)\n", "for x,y in np.ndindex(SN2_velocity_map.shape):\n", " try:\n", " SN2_velocity_map[x,y] = out[x,y]['fit_params']['velocity'][0]\n", " gas_after_nburst_lines[x,y,:] = out[x,y]['line_spectra']\n", " except TypeError:\n", " velocity_map[x,y] = np.nan\n", " gas_after_nburst_lines[x,y,:] = np.nan * np.ones(556)" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "f, ax = plt.subplots()\n", "ax.scatter(SN2_velocity_map.flatten(), SN3_velocity_map.flatten(), marker='+', s=1)\n", "ax.plot(np.arange(-800,0), np.arange(-800,0), 'k--')\n", "ax.set_xlabel('V Hbeta')\n", "ax.set_ylabel(' V Halpha')\n", "ax.set_xlim(-800,0)\n", "ax.set_ylim(-800,0)\n", "f.show()" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 288, "metadata": {}, "outputs": [ { "data": { "application/javascript": [ "/* Put everything inside the global mpl namespace */\n", "window.mpl = {};\n", "\n", "\n", "mpl.get_websocket_type = function() {\n", " if (typeof(WebSocket) !== 'undefined') {\n", " return WebSocket;\n", " } else if (typeof(MozWebSocket) !== 'undefined') {\n", " return MozWebSocket;\n", " } else {\n", " alert('Your browser does not have WebSocket support.' +\n", " 'Please try Chrome, Safari or Firefox ≥ 6. ' +\n", " 'Firefox 4 and 5 are also supported but you ' +\n", " 'have to enable WebSockets in about:config.');\n", " };\n", "}\n", "\n", "mpl.figure = function(figure_id, websocket, ondownload, parent_element) {\n", " this.id = figure_id;\n", "\n", " this.ws = websocket;\n", "\n", " this.supports_binary = (this.ws.binaryType != undefined);\n", "\n", " if (!this.supports_binary) {\n", " var warnings = document.getElementById(\"mpl-warnings\");\n", " if (warnings) {\n", " warnings.style.display = 'block';\n", " warnings.textContent = (\n", " \"This browser does not support binary websocket messages. \" +\n", " \"Performance may be slow.\");\n", " }\n", " }\n", "\n", " this.imageObj = new Image();\n", "\n", " this.context = undefined;\n", " this.message = undefined;\n", " this.canvas = undefined;\n", " this.rubberband_canvas = undefined;\n", " this.rubberband_context = undefined;\n", " this.format_dropdown = undefined;\n", "\n", " this.image_mode = 'full';\n", "\n", " this.root = $('
');\n", " this._root_extra_style(this.root)\n", " this.root.attr('style', 'display: inline-block');\n", "\n", " $(parent_element).append(this.root);\n", "\n", " this._init_header(this);\n", " this._init_canvas(this);\n", " this._init_toolbar(this);\n", "\n", " var fig = this;\n", "\n", " this.waiting = false;\n", "\n", " this.ws.onopen = function () {\n", " fig.send_message(\"supports_binary\", {value: fig.supports_binary});\n", " fig.send_message(\"send_image_mode\", {});\n", " if (mpl.ratio != 1) {\n", " fig.send_message(\"set_dpi_ratio\", {'dpi_ratio': mpl.ratio});\n", " }\n", " fig.send_message(\"refresh\", {});\n", " }\n", "\n", " this.imageObj.onload = function() {\n", " if (fig.image_mode == 'full') {\n", " // Full images could contain transparency (where diff images\n", " // almost always do), so we need to clear the canvas so that\n", " // there is no ghosting.\n", " fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);\n", " }\n", " fig.context.drawImage(fig.imageObj, 0, 0);\n", " };\n", "\n", " this.imageObj.onunload = function() {\n", " fig.ws.close();\n", " }\n", "\n", " this.ws.onmessage = this._make_on_message_function(this);\n", "\n", " this.ondownload = ondownload;\n", "}\n", "\n", "mpl.figure.prototype._init_header = function() {\n", " var titlebar = $(\n", " '
');\n", " var titletext = $(\n", " '
');\n", " titlebar.append(titletext)\n", " this.root.append(titlebar);\n", " this.header = titletext[0];\n", "}\n", "\n", "\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "\n", "mpl.figure.prototype._root_extra_style = function(canvas_div) {\n", "\n", "}\n", "\n", "mpl.figure.prototype._init_canvas = function() {\n", " var fig = this;\n", "\n", " var canvas_div = $('
');\n", "\n", " canvas_div.attr('style', 'position: relative; clear: both; outline: 0');\n", "\n", " function canvas_keyboard_event(event) {\n", " return fig.key_event(event, event['data']);\n", " }\n", "\n", " canvas_div.keydown('key_press', canvas_keyboard_event);\n", " canvas_div.keyup('key_release', canvas_keyboard_event);\n", " this.canvas_div = canvas_div\n", " this._canvas_extra_style(canvas_div)\n", " this.root.append(canvas_div);\n", "\n", " var canvas = $('');\n", " canvas.addClass('mpl-canvas');\n", " canvas.attr('style', \"left: 0; top: 0; z-index: 0; outline: 0\")\n", "\n", " this.canvas = canvas[0];\n", " this.context = canvas[0].getContext(\"2d\");\n", "\n", " var backingStore = this.context.backingStorePixelRatio ||\n", "\tthis.context.webkitBackingStorePixelRatio ||\n", "\tthis.context.mozBackingStorePixelRatio ||\n", "\tthis.context.msBackingStorePixelRatio ||\n", "\tthis.context.oBackingStorePixelRatio ||\n", "\tthis.context.backingStorePixelRatio || 1;\n", "\n", " mpl.ratio = (window.devicePixelRatio || 1) / backingStore;\n", "\n", " var rubberband = $('');\n", " rubberband.attr('style', \"position: absolute; left: 0; top: 0; z-index: 1;\")\n", "\n", " var pass_mouse_events = true;\n", "\n", " canvas_div.resizable({\n", " start: function(event, ui) {\n", " pass_mouse_events = false;\n", " },\n", " resize: function(event, ui) {\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " stop: function(event, ui) {\n", " pass_mouse_events = true;\n", " fig.request_resize(ui.size.width, ui.size.height);\n", " },\n", " });\n", "\n", " function mouse_event_fn(event) {\n", " if (pass_mouse_events)\n", " return fig.mouse_event(event, event['data']);\n", " }\n", "\n", " rubberband.mousedown('button_press', mouse_event_fn);\n", " rubberband.mouseup('button_release', mouse_event_fn);\n", " // Throttle sequential mouse events to 1 every 20ms.\n", " rubberband.mousemove('motion_notify', mouse_event_fn);\n", "\n", " rubberband.mouseenter('figure_enter', mouse_event_fn);\n", " rubberband.mouseleave('figure_leave', mouse_event_fn);\n", "\n", " canvas_div.on(\"wheel\", function (event) {\n", " event = event.originalEvent;\n", " event['data'] = 'scroll'\n", " if (event.deltaY < 0) {\n", " event.step = 1;\n", " } else {\n", " event.step = -1;\n", " }\n", " mouse_event_fn(event);\n", " });\n", "\n", " canvas_div.append(canvas);\n", " canvas_div.append(rubberband);\n", "\n", " this.rubberband = rubberband;\n", " this.rubberband_canvas = rubberband[0];\n", " this.rubberband_context = rubberband[0].getContext(\"2d\");\n", " this.rubberband_context.strokeStyle = \"#000000\";\n", "\n", " this._resize_canvas = function(width, height) {\n", " // Keep the size of the canvas, canvas container, and rubber band\n", " // canvas in synch.\n", " canvas_div.css('width', width)\n", " canvas_div.css('height', height)\n", "\n", " canvas.attr('width', width * mpl.ratio);\n", " canvas.attr('height', height * mpl.ratio);\n", " canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');\n", "\n", " rubberband.attr('width', width);\n", " rubberband.attr('height', height);\n", " }\n", "\n", " // Set the figure to an initial 600x600px, this will subsequently be updated\n", " // upon first draw.\n", " this._resize_canvas(600, 600);\n", "\n", " // Disable right mouse context menu.\n", " $(this.rubberband_canvas).bind(\"contextmenu\",function(e){\n", " return false;\n", " });\n", "\n", " function set_focus () {\n", " canvas.focus();\n", " canvas_div.focus();\n", " }\n", "\n", " window.setTimeout(set_focus, 100);\n", "}\n", "\n", "mpl.figure.prototype._init_toolbar = function() {\n", " var fig = this;\n", "\n", " var nav_element = $('
')\n", " nav_element.attr('style', 'width: 100%');\n", " this.root.append(nav_element);\n", "\n", " // Define a callback function for later on.\n", " function toolbar_event(event) {\n", " return fig.toolbar_button_onclick(event['data']);\n", " }\n", " function toolbar_mouse_event(event) {\n", " return fig.toolbar_button_onmouseover(event['data']);\n", " }\n", "\n", " for(var toolbar_ind in mpl.toolbar_items) {\n", " var name = mpl.toolbar_items[toolbar_ind][0];\n", " var tooltip = mpl.toolbar_items[toolbar_ind][1];\n", " var image = mpl.toolbar_items[toolbar_ind][2];\n", " var method_name = mpl.toolbar_items[toolbar_ind][3];\n", "\n", " if (!name) {\n", " // put a spacer in here.\n", " continue;\n", " }\n", " var button = $('');\n", " button.click(method_name, toolbar_event);\n", " button.mouseover(tooltip, toolbar_mouse_event);\n", " nav_element.append(button);\n", " }\n", "\n", " // Add the status bar.\n", " var status_bar = $('');\n", " nav_element.append(status_bar);\n", " this.message = status_bar[0];\n", "\n", " // Add the close button to the window.\n", " var buttongrp = $('
');\n", " var button = $('');\n", " button.click(function (evt) { fig.handle_close(fig, {}); } );\n", " button.mouseover('Stop Interaction', toolbar_mouse_event);\n", " buttongrp.append(button);\n", " var titlebar = this.root.find($('.ui-dialog-titlebar'));\n", " titlebar.prepend(buttongrp);\n", "}\n", "\n", "mpl.figure.prototype._root_extra_style = function(el){\n", " var fig = this\n", " el.on(\"remove\", function(){\n", "\tfig.close_ws(fig, {});\n", " });\n", "}\n", "\n", "mpl.figure.prototype._canvas_extra_style = function(el){\n", " // this is important to make the div 'focusable\n", " el.attr('tabindex', 0)\n", " // reach out to IPython and tell the keyboard manager to turn it's self\n", " // off when our div gets focus\n", "\n", " // location in version 3\n", " if (IPython.notebook.keyboard_manager) {\n", " IPython.notebook.keyboard_manager.register_events(el);\n", " }\n", " else {\n", " // location in version 2\n", " IPython.keyboard_manager.register_events(el);\n", " }\n", "\n", "}\n", "\n", "mpl.figure.prototype._key_event_extra = function(event, name) {\n", " var manager = IPython.notebook.keyboard_manager;\n", " if (!manager)\n", " manager = IPython.keyboard_manager;\n", "\n", " // Check for shift+enter\n", " if (event.shiftKey && event.which == 13) {\n", " this.canvas_div.blur();\n", " event.shiftKey = false;\n", " // Send a \"J\" for go to next cell\n", " event.which = 74;\n", " event.keyCode = 74;\n", " manager.command_mode();\n", " manager.handle_keydown(event);\n", " }\n", "}\n", "\n", "mpl.figure.prototype.handle_save = function(fig, msg) {\n", " fig.ondownload(fig, null);\n", "}\n", "\n", "\n", "mpl.find_output_cell = function(html_output) {\n", " // Return the cell and output element which can be found *uniquely* in the notebook.\n", " // Note - this is a bit hacky, but it is done because the \"notebook_saving.Notebook\"\n", " // IPython event is triggered only after the cells have been serialised, which for\n", " // our purposes (turning an active figure into a static one), is too late.\n", " var cells = IPython.notebook.get_cells();\n", " var ncells = cells.length;\n", " for (var i=0; i= 3 moved mimebundle to data attribute of output\n", " data = data.data;\n", " }\n", " if (data['text/html'] == html_output) {\n", " return [cell, data, j];\n", " }\n", " }\n", " }\n", " }\n", "}\n", "\n", "// Register the function which deals with the matplotlib target/channel.\n", "// The kernel may be null if the page has been refreshed.\n", "if (IPython.notebook.kernel != null) {\n", " IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);\n", "}\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#Interactive plot\n", "map_fig, _ = plot_map(velocity_map, cmap='jet', colorbar=True, vmin=-600, vmax=0)\n", "spec_fig, spec_axis = plt.subplots()\n", "spec_plotter = SpectraPlotter(SN3_axis, SN3_clean, gas_after_nburst_lines, spec_axis,\n", " residual=False,\n", " title='',\n", " xlims=[14750, 15380],\n", " label=['Nburst clean', 'Gas Lines fit', 'Residual'])\n", "spec_plotter.connect(map_fig)\n", "map_fig.show()" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.0395048262191255e-15" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "out[2,3]['fit_params']['flux'][1]" ] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.14" } }, "nbformat": 4, "nbformat_minor": 2 }