Code Monkey home page Code Monkey logo

phaser's People

Contributors

dependabot[bot] avatar imgbotapp avatar siddharth-maddali avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

phaser's Issues

Shape Mismatch Bug in PostProcessing Module

I think there might be a bug in one of the post processing functions: specifically, in the line

y, x, z = np.meshgrid(
        np.arange( supC.shape[0] ),
        np.arange( supC.shape[1] ),
        np.arange( supC.shape[2] )
)

in the function centerObject in the PostProcessing.py module. Later lines were giving me a shape mismatch between x,y,z and supC; it looks like the default inputs for np.meshgrid ('xy' indexing) give a matrix with a shape whose first dimension corresponds to the second vector input and whose second dimension corresponds to the first vector input. So it seems like the line should be 

y, x, z = np.meshgrid(
        np.arange( supC.shape[1] ),
        np.arange( supC.shape[0] ),
        np.arange( supC.shape[2] )
)

or, alternatively, one could set indexing='ij' as a parameter in the meshgrid function.

(And the shape mismatch errors do go away after I make this change.)

Update Error Missing in HIO.py

It looks like the HIO function doesn't update the modulus before updating the error; leading to a static error output during HIO iterations. Should have something like

def HIO(...):
...
self._UpdateHIOStep()
self._UpdateMod()
self._UpdateError()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.