Changeset 1a8c11c in sasmodels for sasmodels/data.py


Ignore:
Timestamp:
Jul 19, 2018 11:56:00 AM (6 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
58a34f1
Parents:
4341dd4
Message:

fix handling of 1D data mask when no mask specified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/data.py

    r65fbf7c r1a8c11c  
    503503            # Note: masks merge, so any masked theory points will stay masked, 
    504504            # and the data mask will be added to it. 
    505             mtheory = masked_array(theory, data.mask.copy()) 
     505            #mtheory = masked_array(theory, data.mask.copy()) 
     506            theory_x = data.x[~data.mask] 
     507            mtheory = masked_array(theory) 
    506508            mtheory[~np.isfinite(mtheory)] = masked 
    507509            if view is 'log': 
    508510                mtheory[mtheory <= 0] = masked 
    509             plt.plot(data.x, scale*mtheory, '-') 
     511            plt.plot(theory_x, scale*mtheory, '-') 
    510512            all_positive = all_positive and (mtheory > 0).all() 
    511513            some_present = some_present or (mtheory.count() > 0) 
     
    543545 
    544546    if use_resid: 
    545         mresid = masked_array(resid, data.mask.copy()) 
     547        theory_x = data.x[~data.mask] 
     548        mresid = masked_array(resid) 
    546549        mresid[~np.isfinite(mresid)] = masked 
    547550        some_present = (mresid.count() > 0) 
     
    549552        if num_plots > 1: 
    550553            plt.subplot(1, num_plots, use_calc + 2) 
    551         plt.plot(data.x, mresid, '.') 
     554        plt.plot(theory_x, mresid, '.') 
    552555        plt.xlabel("$q$/A$^{-1}$") 
    553556        plt.ylabel('residuals') 
Note: See TracChangeset for help on using the changeset viewer.