Add picture to a cell.
xls_SetPic(pictureName [, x, y, w, h])
Path to the picture.
position of the picture.
xls_NewExcel(); xls_AddWorkbook(); xls_SetVisible(%t); //create a picture scf(0); plot2d(); xs2bmp(0, TMPDIR + '/foo.bmp'); close(); xls_SetPic(TMPDIR + '/foo.bmp', [10 10 200 200]); xls_SetSave(%t); xls_Close(); xls_Quit();