Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement matrix coordinates as signals #3

Open
jorgeazevedo opened this issue Jun 30, 2012 · 1 comment
Open

Implement matrix coordinates as signals #3

jorgeazevedo opened this issue Jun 30, 2012 · 1 comment

Comments

@jorgeazevedo
Copy link
Owner

Instead of defining them with a stupid initial screen, you could do it in-line in the the main interface. That'd be cool.

I have some work done on this feature on my mid-march notebook. This is a complicated feature due to the sampling cycle. It has to be completely rewritten. During a first phase, all the input matrices are sampled. Then, elements in these matrices must be transfered to the respective channels.

It's a lot of work, really. Lots of bugs just waiting to happen.

@ghost ghost assigned jorgeazevedo Jun 30, 2012
@jorgeazevedo
Copy link
Owner Author

The code I have in mind for this is to substitute this

d_sample[channel][1] = A.matrix[0][0];

With

(j,k) = OpSettings.getCoordinateFor(channel);
d_sample[channel][1] = A.matrix[j][k];

So the steps would be

  • Hardcode j,k
  • Get j,k from OpSettings but Hardcode them in constructor
  • Set j,k from input map

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant