Displaying 4 results from an estimated 4 matches for "sectoin".
Did you mean:
section
2015 Jul 15
4
WAVEFORMATEXTENSIBLE_CHANNEL_MASK is not described
lvqcl wrote:
> Martin Leese wrote:
>> Note that the channel order may not be defined.
>
> IMHO it doesn't matter in this place of documentation (which describes
> default channel assignments for FLAC).
Your proposed wording was:
0000-0111 : (number of independent channels)-1. The channel order
follows SMPTE/ITU-R recommendations. The assignments are as follows:
The
2015 Jul 17
0
WAVEFORMATEXTENSIBLE_CHANNEL_MASK is not described
Martijn van Beurden wrote:
> Op 16-07-15 om 17:58 schreef lvqcl:
>> But this text describes only those 4 bits in frame header.
>> IMHO this sectoin should not describe WAVEFORMATEXTENSIBLE_CHANNEL_MASK,
>> it should be described somewhere in vorbis comments section.
>
> I would propose: 0000-0111 : (number of independent channels)-1.
> The channel order is defined through the
> WAVEFORMATEXTENSIBLE_CHANNEL_MASK vorbis comment...
2015 Jul 16
0
WAVEFORMATEXTENSIBLE_CHANNEL_MASK is not described
...)-1. The channel order
> follows SMPTE/ITU-R recommendations. The assignments are as follows:
>
> The channel order might not follow SMPTE/ITU-R
> recommendations, so this proposed wording
> seems misleading to me.
But this text describes only those 4 bits in frame header.
IMHO this sectoin should not describe WAVEFORMATEXTENSIBLE_CHANNEL_MASK,
it should be described somewhere in vorbis comments section.
>>> So the WAVEFORMATEXTENSIBLE channel
>>> mask is saved ONLY when the channel order
>>> does not follow SMPTE/ITU-R recommendations.
>>
>>...
2004 Feb 21
3
saving variables created by functions in the workspace
Hello ,
just a simple question from a beginner:
I write the function:
plotsinx <- function()
{
x<-seq(0,2*pi,0.01)
sinx<-sin(x)
plot(sinx)
}
I recall it:
plotsinx()
and the plot works properly.
but then in the workspace if I want to look at the
values of sinx the following error is displayed:
Error: Object "sinx" not found.
How to save the variables created by the function on