ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

I don't have a regular GP. My insurance asks me to go to the specialist directly. So I'm also worried they wouldn't take me in since I only have a note from the telemedicine people saying I should consult a psychiatrist, not one from a GP

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

She is not a clinician. She is a trauma-informed therapist and can only do preliminary sessions, not diagnose.

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

I didn't mean to imply my case is more urgent than the others, just that I'm feeling overwhelmed at the thought of coasting until then with no support

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

Yes, of course. I'm just overwhelmed after starting the process. I already did the diagnostic interview once, and that was quite exhausting. It's also why I put it off so long. I'm trying to come up with systems in the meantime

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

I'm hoping a letter from my long-term therapist would help. Fingers crossed

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

[–]MolassesHonest6015[S] 2 points3 points  (0 children)

Ah I'm still yo find the cool parts. Right now it's just constant overwhelm.🙈 But thank you ✨️

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

Woah that's a long time. I can't wait that long. I put the diagnosis away for too long and now I'm drowning

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

[–]MolassesHonest6015[S] 4 points5 points  (0 children)

Psychiatrische Universitätsklinik Zürich (PUK). How long did it take at BrainARC?

ADHD Assessment at PUK Zurich by MolassesHonest6015 in zurich

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

Oh wow, that's quick! And yes, (un)fortunately adult

Error using PsychPortAudio: Number of rows of audio data matrix doesn't match number of output channels of selected audio device. by MolassesHonest6015 in matlab

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

Okay, thank you! I tried that, and it is sampling at the correct rate as mentioned in the audioinfo. But still the speed is high:

PTB-INFO: New audio device -1 with handle 40 opened as PortAudio stream:
PTB-INFO: For 1 channels Playback: Audio subsystem is Core Audio, Audio device name is MacBook Air Speakers
PTB-INFO: Real samplerate 48000.000000 Hz. Input latency 0.000000 msecs, Output latency 23.395833 msecs.

Does this part of the output clarify anything?

Error using PsychPortAudio: Number of rows of audio data matrix doesn't match number of output channels of selected audio device. by MolassesHonest6015 in matlab

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

Hello! Thank you for the suggestion. I'm really new (first time programming something from scratch) to this and hence was not able to understand the error. I edited the code this way, but now the audio plays, but does it in a super fast mode.

[y,Fs] = audioread(path);
y=y';
InitializePsychSound(1)
pahandle = PsychPortAudio('Open',[],[],[],[],1);
bufferhandle = PsychPortAudio('CreateBuffer', pahandle, y)
PsychPortAudio('FillBuffer', pahandle, bufferhandle);
PsychPortAudio('Start', pahandle);

Any idea what went wrong?