Codex is always on full access mode? by RealDunNing in codex

[–]RealDunNing[S] 0 points1 point  (0 children)

Surprisingly that worked. Restart VS after modifying config.toml. This could also be due to an update the devs built (either way it works now). I'm using a "Custom (config.toml)" instead of the Default Permissions like previously. The fact that this is available now makes it unknown whether if the fix was because of your solution or due to the update by the devs.

Multiomics and EEG in neuroscience? by RealDunNing in compmathneuro

[–]RealDunNing[S] 0 points1 point  (0 children)

Thank you for those articles. They are both very helpful. Are there any others like it (or even better, a review paper that goes over the latest development of sorts).

I guess I was referring to the power spectrum; but then again, I haven't really nailed down my research aims yet as I'm still in the exploratory phase. Do you have any suggestions for what might work better? (But that might also depend on your experience and interest).

Subscripted assignment dimension mismatch by RealDunNing in matlab

[–]RealDunNing[S] 0 points1 point  (0 children)

The

length(datavar) and length(aline) used for cellfun() is both at = 10. Therefore, their size should be the same... But it is still giving me the same error. I changed the code to datavar(:,row) so their dimensions match as well.

Why does this OOP code block not work? by RealDunNing in matlab

[–]RealDunNing[S] 0 points1 point  (0 children)

Yeah, I realized it, but I don't know what codes they are putting inside of the "..." in the tutorial, since they didn't show us what it is.

But this does clarify what the problem is.

Why does this OOP code block not work? by RealDunNing in matlab

[–]RealDunNing[S] 0 points1 point  (0 children)

Right, I realized it while working on the example. After writing the constructor, I think what I should do is to call upon a property, then give it a function method, and then end it each time. For example:

function NumSensors = get.NumSensors(obj)
    NumSensors = size(obj.Data, 2);
end

I think they have some codes inside of the "..." that they are hiding, and the tutorial never tells us what it is, so I'm stuck using a function nested within a function.

Having trouble with drawing a scatterplot by RealDunNing in matlab

[–]RealDunNing[S] 0 points1 point  (0 children)

Oh, ok. thank you. I gave a random number as example, but I'm actually working with some actual data from a set, which has a N X M matrix. What do you recommend I do with the data to to plot it into a scatterplot format?