博客

导出博客信息
属性
file
"c:/home/xin/Dropbox/emacs/org/source/myblogs/oblog/oblog-work.org"
buffer
#<buffer oblog-work.org>
publish-dir
"~/Dropbox/emacs/org/html/myblogs/oblog-work/"
template-dir
"~/Dropbox/emacs/org/addon/o-blog/templates/"
style-dir
"style"
posts-filter
"+TODO=\"DONE\""
static-filter
"+PAGE={.+.html}"
snippet-filter
"+SNIPPET={.+}"
title
"Work Journal"
description
"Work blog"
post-build-shell
nil

博文

Organize my files

导出博文信息 Organize my files
属性
id
0
title
"Organize my files"
timespamp
(21478 35912)
year
2014
month
8
day
9
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "summary" "summary" nil nil] [cl-struct-ob:tags "org" "org" nil nil])
template
"blog_post.html"
filepath
"blog/2014/08"
filename
"organize-my-files"
htmlfile
"blog/2014/08/09_organize-my-files.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


To keep my files organized, secure and low-cost, I use:

- Dropbox Free (5.2 GB): work files, most valuable files
  + Project source code
  + Work documents
  + Reading notes
  + Organized research files
  + Emacs files
    - GTD files
    - My local blogs
    - Emacs work files
- Google Drive Free (15 GB): frequently used references, shared files
  + User manuals
  + Research literatures
    - New downloads
    - Classic literatures
  + Ebooks
    - Frequently used references
    - Current learning
  + Geek software test projects and examples
  + Shared files with colleagues
- Microsoft One Drive (15 GB): Shared files with family and friends
  + Photos
  + Pictures
  + Ebooks
- External Hard driver 1: USB-Work (1 TB)
  + My personal library
    - All my ebooks and related code
    - Useful websites copy
    - My selection of good books
    - Scanned books
  + Useful videos
  + Organized work files
  + Backups of Dropbox and Google Drive
  + Backups of my historical files
  + Software I am using
  + Virtual machine files
  + My hobby learning and projects
- External Hard driver 2: USB-Backup (1 TB)
  + Backup of USB-Work
"
content-html
"<p>
To keep my files organized, secure and low-cost, I use:
</p>

<ul class=\"org-ul\">
<li>Dropbox Free (5.2 GB): work files, most valuable files
<ul class=\"org-ul\">
<li>Project source code
</li>
<li>Work documents
</li>
<li>Reading notes
</li>
<li>Organized research files
</li>
<li>Emacs files
<ul class=\"org-ul\">
<li>GTD files
</li>
<li>My local blogs
</li>
<li>Emacs work files
</li>
</ul>
</li>
</ul>
</li>
<li>Google Drive Free (15 GB): frequently used references, shared files
<ul class=\"org-ul\">
<li>User manuals
</li>
<li>Research literatures
<ul class=\"org-ul\">
<li>New downloads
</li>
<li>Classic literatures
</li>
</ul>
</li>
<li>Ebooks
<ul class=\"org-ul\">
<li>Frequently used references
</li>
<li>Current learning
</li>
</ul>
</li>
<li>Geek software test projects and examples
</li>
<li>Shared files with colleagues
</li>
</ul>
</li>
<li>Microsoft One Drive (15 GB): Shared files with family and friends
<ul class=\"org-ul\">
<li>Photos
</li>
<li>Pictures
</li>
<li>Ebooks
</li>
</ul>
</li>
<li>External Hard driver 1: USB-Work (1 TB)
<ul class=\"org-ul\">
<li>My personal library
<ul class=\"org-ul\">
<li>All my ebooks and related code
</li>
<li>Useful websites copy
</li>
<li>My selection of good books
</li>
<li>Scanned books
</li>
</ul>
</li>
<li>Useful videos
</li>
<li>Organized work files
</li>
<li>Backups of Dropbox and Google Drive
</li>
<li>Backups of my historical files
</li>
<li>Software I am using
</li>
<li>Virtual machine files
</li>
<li>My hobby learning and projects
</li>
</ul>
</li>
<li>External Hard driver 2: USB-Backup (1 TB)
<ul class=\"org-ul\">
<li>Backup of USB-Work
</li>
</ul>
</li>
</ul>
"

【转】What is the relation between FFT length and frequency resolution?

导出博文信息 【转】What is the relation between FFT length and frequency resolution?
属性
id
1
title
"【转】What is the relation between FFT length and frequency resolution?"
timespamp
(21408 5712)
year
2014
month
6
day
17
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "dsp" "dsp" nil nil] [cl-struct-ob:tags "zz" "zz" nil nil])
template
"blog_post.html"
filepath
"blog/2014/06"
filename
"what-is-the-relation-between-fft-length-and-frequency-resolution"
htmlfile
"blog/2014/06/17_what-is-the-relation-between-fft-length-and-frequency-resolution.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


REF: [[http://electronics.stackexchange.com/questions/12407/what-is-the-relation-between-fft-length-and-frequency-resolution][Post @ stackexchange]]

** Question

If I have sampled a signal using proper sampling methods (Nyquist,
filtering, etc) how do I relate the length of my FFT to the resulting
frequency resolution I can obtain?

Like if I have a 2,000 Hz and 1,999 Hz sine wave, how would I
determine the length of FFT needed to accurately tell the difference
between those two waves?

** Answer

The frequency resolution is dependent on the relationship between the
FFT length and the sampling rate of the input signal.

If the sampling rate of the signal is 10khz and we collect 8192
samples for the FFT then we will have:

: 8192 / 2 = 4096 FFT bins

Since, via nyquist, our signal contains content up to 5khz our bin
resolution is:

: 5000Hz / 4096 bins = 1.22 Hz/bin

This is may be the easier way to explain it conceptually but
simplified, your bin resolution is just:

: FS/N

where FS is the input signal's sampling rate and N is the number of
FFT points used.

We can see from the above that to get smaller FFT bins we can either
run a longer FFT or decrease our sampling rate.

*** The Catch

There is always a trade off between temporal resolution and frequency
resolution.

In the example above, we need to collect 8192 samples before we can
run the FFT, which when sampling at 10khz takes 0.82 seconds.

If we tried to get smaller FFT bins by running a longer FFT it would
take even longer to collect the needed samples.

That may be OK, it may not be. The important point is that at a fixed
sampling rate, increasing frequency resolution decreases temporal
resolution. That is the more accurate your measurement in the
frequency domain, the less accurate you can be in the time domain. You
effectively lose all time information inside the FFT length.

In this example, if a 1999Hz tone starts and stops in the first half
of the 8192 sample FFT and a 2002Hz tone plays in the second half of
the window, we would see both, but they would appear to have occurred
at the same time.

You also have to consider processing time. A 8192 point FFT takes some
decent processing power. A way to reduce this need is to reduce the
sampling rate, which is the second way to increase frequency
resolution.

In your example, if you drop your sampling rate to something like 4096
Hz, then you only need a 4096 point FFT to achieve 1hz bins and can
still resolve a 2khz signal. This reduces the FFT bin size but also
reduces the bandwidth of the signal.

Ultimately with an FFT there will always be a trade off between
frequency resolution and time resolution. You have to perform a bit of
a balancing act to reach all goals.
"
content-html
"<p>
REF: <a href=\"http://electronics.stackexchange.com/questions/12407/what-is-the-relation-between-fft-length-and-frequency-resolution\">Post @ stackexchange</a>
</p>

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">Question</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<p>
If I have sampled a signal using proper sampling methods (Nyquist,
filtering, etc) how do I relate the length of my FFT to the resulting
frequency resolution I can obtain?
</p>

<p>
Like if I have a 2,000 Hz and 1,999 Hz sine wave, how would I
determine the length of FFT needed to accurately tell the difference
between those two waves?
</p>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">Answer</h2>
<div class=\"outline-text-2\" id=\"text-2\">
<p>
The frequency resolution is dependent on the relationship between the
FFT length and the sampling rate of the input signal.
</p>

<p>
If the sampling rate of the signal is 10khz and we collect 8192
samples for the FFT then we will have:
</p>

<pre class=\"example\">
8192 / 2 = 4096 FFT bins
</pre>

<p>
Since, via nyquist, our signal contains content up to 5khz our bin
resolution is:
</p>

<pre class=\"example\">
5000Hz / 4096 bins = 1.22 Hz/bin
</pre>

<p>
This is may be the easier way to explain it conceptually but
simplified, your bin resolution is just:
</p>

<pre class=\"example\">
FS/N
</pre>

<p>
where FS is the input signal's sampling rate and N is the number of
FFT points used.
</p>

<p>
We can see from the above that to get smaller FFT bins we can either
run a longer FFT or decrease our sampling rate.
</p>
</div>

<div id=\"outline-container-sec-2-1\" class=\"outline-3\">
<h3 id=\"sec-2-1\">The Catch</h3>
<div class=\"outline-text-3\" id=\"text-2-1\">
<p>
There is always a trade off between temporal resolution and frequency
resolution.
</p>

<p>
In the example above, we need to collect 8192 samples before we can
run the FFT, which when sampling at 10khz takes 0.82 seconds.
</p>

<p>
If we tried to get smaller FFT bins by running a longer FFT it would
take even longer to collect the needed samples.
</p>

<p>
That may be OK, it may not be. The important point is that at a fixed
sampling rate, increasing frequency resolution decreases temporal
resolution. That is the more accurate your measurement in the
frequency domain, the less accurate you can be in the time domain. You
effectively lose all time information inside the FFT length.
</p>

<p>
In this example, if a 1999Hz tone starts and stops in the first half
of the 8192 sample FFT and a 2002Hz tone plays in the second half of
the window, we would see both, but they would appear to have occurred
at the same time.
</p>

<p>
You also have to consider processing time. A 8192 point FFT takes some
decent processing power. A way to reduce this need is to reduce the
sampling rate, which is the second way to increase frequency
resolution.
</p>

<p>
In your example, if you drop your sampling rate to something like 4096
Hz, then you only need a 4096 point FFT to achieve 1hz bins and can
still resolve a 2khz signal. This reduces the FFT bin size but also
reduces the bandwidth of the signal.
</p>

<p>
Ultimately with an FFT there will always be a trade off between
frequency resolution and time resolution. You have to perform a bit of
a balancing act to reach all goals.
</p>
</div>
</div>
</div>
"

Wikipedian definitions of some scientific terms in hearing research

导出博文信息 Wikipedian definitions of some scientific terms in hearing research
属性
id
2
title
"Wikipedian definitions of some scientific terms in hearing research"
timespamp
(21351 46104)
year
2014
month
5
day
5
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "auditory" "auditory" nil nil])
template
"blog_post.html"
filepath
"blog/2014/05"
filename
"wikipedian-definitions-of-some-scientific-terms-in-hearing-research"
htmlfile
"blog/2014/05/05_wikipedian-definitions-of-some-scientific-terms-in-hearing-research.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** Physics

Physics (from Ancient Greek \"knowledge of nature\") is the natural
science that involves the study of matter and its motion through space
and time, along with related concepts such as energy and force. More
broadly, it is the general analysis of nature, conducted in order to
understand how the universe behaves.

** Biology

Biology is a natural science concerned with the study of life and
living organisms, including their structure, function, growth,
evolution, distribution, and taxonomy. Modern biology is a vast and
eclectic field, composed of many branches and subdisciplines. However,
despite the broad scope of biology, there are certain general and
unifying concepts within it that govern all study and research,
consolidating it into single, coherent fields. In general, biology
recognizes the cell as the basic unit of life, genes as the basic unit
of heredity, and evolution as the engine that propels the synthesis
and creation of new species. It is also understood today that all
organisms survive by consuming and transforming energy and by
regulating their internal environment to maintain a stable and vital
condition.

** Physiology

Physiology (from Ancient Greek 'physis', meaning \"nature, origin\", and
'-logia', meaning \"study of\" is the scientific study of function in
living systems. A sub-discipline of biology, its focus is in how
organisms, organ systems, organs, cells, and bio-molecules carry out
the chemical or physical functions that exist in a living system.
Giving the size of the field it is divided into among others: human
physiology, animal physiology, plant physiology, cellular physiology,
microbial physiology (see microbial metabolism), bacterial physiology,
viral physiology.

** Psychology

Psychology is an academic and applied discipline that involves the
scientific study of mental functions and behaviors. Psychology has the
immediate goal of understanding individuals and groups by both
establishing general principles and researching specific cases, and by
many accounts it ultimately aims to benefit society. In this field, a
professional practitioner or researcher is called a psychologist and
can be classified as a social, behavioral, or cognitive scientist.
Psychologists attempt to understand the role of mental functions in
individual and social behavior, while also exploring the physiological
and biological processes that underlie cognitive functions and
behaviors.

Psychologists explore concepts such as perception, cognition,
attention, emotion, phenomenology, motivation, brain functioning,
personality, behavior, and interpersonal relationships, including
psychological resilience, family resilience, and other areas.
Psychologists of diverse orientations also consider the unconscious
mind. Psychologists employ empirical methods to infer causal and
correlational relationships between psychosocial variables. In
addition, or in opposition, to employing empirical and deductive
methods, some—especially clinical and counseling psychologists—at
times rely upon symbolic interpretation and other inductive
techniques. Psychology has been described as a \"hub science\", with
psychological findings linking to research and perspectives from the
social sciences, natural sciences, medicine, and the humanities, such
as philosophy.

** Sensation

In psychology, sensation and perception are stages of processing of
the senses in human and animal systems, such as vision, auditory,
vestibular, and pain senses. Included in this topic is the study of
illusions such as motion aftereffect, color constancy, auditory
illusions, and depth perception.

Sensation is the function of the low-level biochemical and
neurological events that begin with the impinging of a stimulus upon
the receptor cells of a sensory organ. It is the detection of the
elementary properties of a stimulus.

** Perception

Perception (from the Latin perceptio, percipio) is the organization,
identification, and interpretation of sensory information in order to
represent and understand the environment. All perception involves
signals in the nervous system, which in turn result from physical or
chemical stimulation of the sense organs. For example, vision involves
light striking the retina of the eye, smell is mediated by odor
molecules, and hearing involves pressure waves. Perception is not the
passive receipt of these signals, but is shaped by learning, memory,
expectation, and attention. Perception involves these \"top-down\"
effects as well as the \"bottom-up\" process of processing sensory
input. The \"bottom-up\" processing transforms low-level information to
higher-level information (e.g., extracts shapes for object
recognition). The \"top-down\" processing refers to a person's concept
and expectations (knowledge), and selective mechanisms (attention)
that influence perception. Perception depends on complex functions of
the nervous system, but subjectively seems mostly effortless because
this processing happens outside conscious awareness.

** Cognition

Cognition is the process by which the sensory input is transformed,
reduced, elaborated, stored, recovered, and used. In science,
cognition is the mental processing that includes the attention of
working memory, comprehending and producing language, calculating,
reasoning, problem solving, and decision making. Various disciplines,
such as psychology, philosophy and linguistics all study cognition.
However, the term's usage varies across disciplines; for example, in
psychology and cognitive science, \"cognition\" usually refers to an
information processing view of an individual's psychological
functions. It is also used in a branch of social psychology called
social cognition to explain attitudes, attribution, and groups
dynamics. In cognitive psychology and cognitive engineering, cognition
is typically assumed to be information processing in a participant's
or operator's mind or brain.

Cognition is a faculty for the processing of information, applying
knowledge, and changing preferences. Cognition, or cognitive
processes, can be natural or artificial, conscious or unconscious.
These processes are analyzed from different perspectives within
different contexts, notably in the fields of linguistics, anesthesia,
neuroscience, psychiatry, psychology, philosophy, anthropology,
systemics, and computer science. Within psychology or philosophy, the
concept of cognition is closely related to abstract concepts such as
mind, intelligence. It encompasses the mental functions, mental
processes (thoughts), and states of intelligent entities (humans,
collaborative groups, human organizations, highly autonomous machines,
and artificial intelligences).

** Psychophysics

Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as
\"the analysis of perceptual processes by studying the effect on a
subject's experience or behaviour of systematically varying the
properties of a stimulus along one or more physical dimensions\".

Psychophysics also refers to a general class of methods that can be
applied to study a perceptual system. Modern applications rely heavily
on threshold measurement, ideal observer analysis, and signal
detection theory.

Psychophysics has widespread and important practical applications. As
just one example, in the study of digital signal processing,
psychophysics has informed the development of models and methods of
lossy compression. These models explain why humans perceive very
little loss of signal quality when audio and video signals are
formatted using lossy compression.

** Pschoacoustics

Psychoacoustics is the scientific study of sound perception. More
specifically, it is the branch of science studying the psychological
and physiological responses associated with sound (including speech
and music). It can be further categorized as a branch of
psychophysics.

** Psychology 

Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as \"the
analysis of perceptual processes by studying the effect on a subject's
experience or behaviour of systematically varying the properties of a
stimulus along one or more physical dimensions\".

Psychophysics also refers to a general class of methods that can be
applied to study a perceptual system. Modern applications rely heavily
on threshold measurement, ideal observer analysis, and signal
detection theory.

** Psychophysics

Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as \"the
analysis of perceptual processes by studying the effect on a subject's
experience or behaviour of systematically varying the properties of a
stimulus along one or more physical dimensions\".
** Summary

The main differences:

- Objective
- Subjective"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">Physics</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<p>
Physics (from Ancient Greek \"knowledge of nature\") is the natural
science that involves the study of matter and its motion through space
and time, along with related concepts such as energy and force. More
broadly, it is the general analysis of nature, conducted in order to
understand how the universe behaves.
</p>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">Biology</h2>
<div class=\"outline-text-2\" id=\"text-2\">
<p>
Biology is a natural science concerned with the study of life and
living organisms, including their structure, function, growth,
evolution, distribution, and taxonomy. Modern biology is a vast and
eclectic field, composed of many branches and subdisciplines. However,
despite the broad scope of biology, there are certain general and
unifying concepts within it that govern all study and research,
consolidating it into single, coherent fields. In general, biology
recognizes the cell as the basic unit of life, genes as the basic unit
of heredity, and evolution as the engine that propels the synthesis
and creation of new species. It is also understood today that all
organisms survive by consuming and transforming energy and by
regulating their internal environment to maintain a stable and vital
condition.
</p>
</div>
</div>

<div id=\"outline-container-sec-3\" class=\"outline-2\">
<h2 id=\"sec-3\">Physiology</h2>
<div class=\"outline-text-2\" id=\"text-3\">
<p>
Physiology (from Ancient Greek 'physis', meaning \"nature, origin\", and
'-logia', meaning \"study of\" is the scientific study of function in
living systems. A sub-discipline of biology, its focus is in how
organisms, organ systems, organs, cells, and bio-molecules carry out
the chemical or physical functions that exist in a living system.
Giving the size of the field it is divided into among others: human
physiology, animal physiology, plant physiology, cellular physiology,
microbial physiology (see microbial metabolism), bacterial physiology,
viral physiology.
</p>
</div>
</div>

<div id=\"outline-container-sec-4\" class=\"outline-2\">
<h2 id=\"sec-4\">Psychology</h2>
<div class=\"outline-text-2\" id=\"text-4\">
<p>
Psychology is an academic and applied discipline that involves the
scientific study of mental functions and behaviors. Psychology has the
immediate goal of understanding individuals and groups by both
establishing general principles and researching specific cases, and by
many accounts it ultimately aims to benefit society. In this field, a
professional practitioner or researcher is called a psychologist and
can be classified as a social, behavioral, or cognitive scientist.
Psychologists attempt to understand the role of mental functions in
individual and social behavior, while also exploring the physiological
and biological processes that underlie cognitive functions and
behaviors.
</p>

<p>
Psychologists explore concepts such as perception, cognition,
attention, emotion, phenomenology, motivation, brain functioning,
personality, behavior, and interpersonal relationships, including
psychological resilience, family resilience, and other areas.
Psychologists of diverse orientations also consider the unconscious
mind. Psychologists employ empirical methods to infer causal and
correlational relationships between psychosocial variables. In
addition, or in opposition, to employing empirical and deductive
methods, some—especially clinical and counseling psychologists—at
times rely upon symbolic interpretation and other inductive
techniques. Psychology has been described as a \"hub science\", with
psychological findings linking to research and perspectives from the
social sciences, natural sciences, medicine, and the humanities, such
as philosophy.
</p>
</div>
</div>

<div id=\"outline-container-sec-5\" class=\"outline-2\">
<h2 id=\"sec-5\">Sensation</h2>
<div class=\"outline-text-2\" id=\"text-5\">
<p>
In psychology, sensation and perception are stages of processing of
the senses in human and animal systems, such as vision, auditory,
vestibular, and pain senses. Included in this topic is the study of
illusions such as motion aftereffect, color constancy, auditory
illusions, and depth perception.
</p>

<p>
Sensation is the function of the low-level biochemical and
neurological events that begin with the impinging of a stimulus upon
the receptor cells of a sensory organ. It is the detection of the
elementary properties of a stimulus.
</p>
</div>
</div>

<div id=\"outline-container-sec-6\" class=\"outline-2\">
<h2 id=\"sec-6\">Perception</h2>
<div class=\"outline-text-2\" id=\"text-6\">
<p>
Perception (from the Latin perceptio, percipio) is the organization,
identification, and interpretation of sensory information in order to
represent and understand the environment. All perception involves
signals in the nervous system, which in turn result from physical or
chemical stimulation of the sense organs. For example, vision involves
light striking the retina of the eye, smell is mediated by odor
molecules, and hearing involves pressure waves. Perception is not the
passive receipt of these signals, but is shaped by learning, memory,
expectation, and attention. Perception involves these \"top-down\"
effects as well as the \"bottom-up\" process of processing sensory
input. The \"bottom-up\" processing transforms low-level information to
higher-level information (e.g., extracts shapes for object
recognition). The \"top-down\" processing refers to a person's concept
and expectations (knowledge), and selective mechanisms (attention)
that influence perception. Perception depends on complex functions of
the nervous system, but subjectively seems mostly effortless because
this processing happens outside conscious awareness.
</p>
</div>
</div>

<div id=\"outline-container-sec-7\" class=\"outline-2\">
<h2 id=\"sec-7\">Cognition</h2>
<div class=\"outline-text-2\" id=\"text-7\">
<p>
Cognition is the process by which the sensory input is transformed,
reduced, elaborated, stored, recovered, and used. In science,
cognition is the mental processing that includes the attention of
working memory, comprehending and producing language, calculating,
reasoning, problem solving, and decision making. Various disciplines,
such as psychology, philosophy and linguistics all study cognition.
However, the term's usage varies across disciplines; for example, in
psychology and cognitive science, \"cognition\" usually refers to an
information processing view of an individual's psychological
functions. It is also used in a branch of social psychology called
social cognition to explain attitudes, attribution, and groups
dynamics. In cognitive psychology and cognitive engineering, cognition
is typically assumed to be information processing in a participant's
or operator's mind or brain.
</p>

<p>
Cognition is a faculty for the processing of information, applying
knowledge, and changing preferences. Cognition, or cognitive
processes, can be natural or artificial, conscious or unconscious.
These processes are analyzed from different perspectives within
different contexts, notably in the fields of linguistics, anesthesia,
neuroscience, psychiatry, psychology, philosophy, anthropology,
systemics, and computer science. Within psychology or philosophy, the
concept of cognition is closely related to abstract concepts such as
mind, intelligence. It encompasses the mental functions, mental
processes (thoughts), and states of intelligent entities (humans,
collaborative groups, human organizations, highly autonomous machines,
and artificial intelligences).
</p>
</div>
</div>

<div id=\"outline-container-sec-8\" class=\"outline-2\">
<h2 id=\"sec-8\">Psychophysics</h2>
<div class=\"outline-text-2\" id=\"text-8\">
<p>
Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as
\"the analysis of perceptual processes by studying the effect on a
subject's experience or behaviour of systematically varying the
properties of a stimulus along one or more physical dimensions\".
</p>

<p>
Psychophysics also refers to a general class of methods that can be
applied to study a perceptual system. Modern applications rely heavily
on threshold measurement, ideal observer analysis, and signal
detection theory.
</p>

<p>
Psychophysics has widespread and important practical applications. As
just one example, in the study of digital signal processing,
psychophysics has informed the development of models and methods of
lossy compression. These models explain why humans perceive very
little loss of signal quality when audio and video signals are
formatted using lossy compression.
</p>
</div>
</div>

<div id=\"outline-container-sec-9\" class=\"outline-2\">
<h2 id=\"sec-9\">Pschoacoustics</h2>
<div class=\"outline-text-2\" id=\"text-9\">
<p>
Psychoacoustics is the scientific study of sound perception. More
specifically, it is the branch of science studying the psychological
and physiological responses associated with sound (including speech
and music). It can be further categorized as a branch of
psychophysics.
</p>
</div>
</div>

<div id=\"outline-container-sec-10\" class=\"outline-2\">
<h2 id=\"sec-10\">Psychology</h2>
<div class=\"outline-text-2\" id=\"text-10\">
<p>
Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as \"the
analysis of perceptual processes by studying the effect on a subject's
experience or behaviour of systematically varying the properties of a
stimulus along one or more physical dimensions\".
</p>

<p>
Psychophysics also refers to a general class of methods that can be
applied to study a perceptual system. Modern applications rely heavily
on threshold measurement, ideal observer analysis, and signal
detection theory.
</p>
</div>
</div>

<div id=\"outline-container-sec-11\" class=\"outline-2\">
<h2 id=\"sec-11\">Psychophysics</h2>
<div class=\"outline-text-2\" id=\"text-11\">
<p>
Psychophysics quantitatively investigates the relationship between
physical stimuli and the sensations and perceptions they affect.
Psychophysics has been described as \"the scientific study of the
relation between stimulus and sensation\" or, more completely, as \"the
analysis of perceptual processes by studying the effect on a subject's
experience or behaviour of systematically varying the properties of a
stimulus along one or more physical dimensions\".
</p>
</div>
</div>
<div id=\"outline-container-sec-12\" class=\"outline-2\">
<h2 id=\"sec-12\">Summary</h2>
<div class=\"outline-text-2\" id=\"text-12\">
<p>
The main differences:
</p>

<ul class=\"org-ul\">
<li>Objective
</li>
<li>Subjective
</li>
</ul>
</div>
</div>
"

Software I used for research

导出博文信息 Software I used for research
属性
id
3
title
"Software I used for research"
timespamp
(21291 32124)
year
2014
month
3
day
20
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "summary" "summary" nil nil] [cl-struct-ob:tags "software" "software" nil nil])
template
"blog_post.html"
filepath
"blog/2014/03"
filename
"software-i-used-for-research"
htmlfile
"blog/2014/03/20_software-i-used-for-research.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


I am using lots of software for my research. It is a good idea to
summarize them before my computer crashes.

** Web services

*** File storage

- Dropbox: my work files
- Google Drive: ebooks, research literatures
- Microsoft One Drive: family shared files
- Sina 微盘: downloaded ebooks from 爱问知识人 

*** Email

- Gmail
- Hotmail
- QQ mail

*** Notes taking

- Evernote: PC上主要用来抓取保存网页,平板上随手记些东西
- Google Keep: 不常用

** Desktop software

*** Email client

- Thunderbird
  + AttachmentExtractor
  + Folderpane Tools
  + MinimizeToTray revived
  
*** Web browser

- Firefox: productive
  + Adblock Plus
  + DownloadHelper
  + Evernote Web Clipper
  + Flash Block
  + FlashGot
  + Print Pages to PDF
  + Xmarks
- Chrome: entertainment and Google services
  + Adblock Plus
  + Evernote Web Clipper
  + Unblock YouKu
  + Xmarks

*** Editor

- GNU Emacs

*** Snapshot

- PicPick

*** Screen cast

- Camtasia Studio

*** PDF tools

- PDF reader 
  + SumatraPDF: quick and refresh-able
  + Acrobat: official/standard PDF reader, for some advanced features
    (JScript support) 
- PDF editor
  + Foxit: fill PDF forms
  + Acrobat Pro
- Microsoft office suite

*** Image editor

- Gimp: GUI
- Imagemagick: CLI
- Graphviz

** Research

- Emacs
- Texlive
- Jabref
- MATLAB
- Visual Studio
- TI CCS
"
content-html
"<p>
I am using lots of software for my research. It is a good idea to
summarize them before my computer crashes.
</p>

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">Web services</h2>
<div class=\"outline-text-2\" id=\"text-1\">
</div><div id=\"outline-container-sec-1-1\" class=\"outline-3\">
<h3 id=\"sec-1-1\">File storage</h3>
<div class=\"outline-text-3\" id=\"text-1-1\">
<ul class=\"org-ul\">
<li>Dropbox: my work files
</li>
<li>Google Drive: ebooks, research literatures
</li>
<li>Microsoft One Drive: family shared files
</li>
<li>Sina 微盘: downloaded ebooks from 爱问知识人 
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-1-2\" class=\"outline-3\">
<h3 id=\"sec-1-2\">Email</h3>
<div class=\"outline-text-3\" id=\"text-1-2\">
<ul class=\"org-ul\">
<li>Gmail
</li>
<li>Hotmail
</li>
<li>QQ mail
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-1-3\" class=\"outline-3\">
<h3 id=\"sec-1-3\">Notes taking</h3>
<div class=\"outline-text-3\" id=\"text-1-3\">
<ul class=\"org-ul\">
<li>Evernote: PC上主要用来抓取保存网页,平板上随手记些东西
</li>
<li>Google Keep: 不常用
</li>
</ul>
</div>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">Desktop software</h2>
<div class=\"outline-text-2\" id=\"text-2\">
</div><div id=\"outline-container-sec-2-1\" class=\"outline-3\">
<h3 id=\"sec-2-1\">Email client</h3>
<div class=\"outline-text-3\" id=\"text-2-1\">
<ul class=\"org-ul\">
<li>Thunderbird
<ul class=\"org-ul\">
<li>AttachmentExtractor
</li>
<li>Folderpane Tools
</li>
<li>MinimizeToTray revived
</li>
</ul>
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-2\" class=\"outline-3\">
<h3 id=\"sec-2-2\">Web browser</h3>
<div class=\"outline-text-3\" id=\"text-2-2\">
<ul class=\"org-ul\">
<li>Firefox: productive
<ul class=\"org-ul\">
<li>Adblock Plus
</li>
<li>DownloadHelper
</li>
<li>Evernote Web Clipper
</li>
<li>Flash Block
</li>
<li>FlashGot
</li>
<li>Print Pages to PDF
</li>
<li>Xmarks
</li>
</ul>
</li>
<li>Chrome: entertainment and Google services
<ul class=\"org-ul\">
<li>Adblock Plus
</li>
<li>Evernote Web Clipper
</li>
<li>Unblock YouKu
</li>
<li>Xmarks
</li>
</ul>
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-3\" class=\"outline-3\">
<h3 id=\"sec-2-3\">Editor</h3>
<div class=\"outline-text-3\" id=\"text-2-3\">
<ul class=\"org-ul\">
<li>GNU Emacs
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-4\" class=\"outline-3\">
<h3 id=\"sec-2-4\">Snapshot</h3>
<div class=\"outline-text-3\" id=\"text-2-4\">
<ul class=\"org-ul\">
<li>PicPick
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-5\" class=\"outline-3\">
<h3 id=\"sec-2-5\">Screen cast</h3>
<div class=\"outline-text-3\" id=\"text-2-5\">
<ul class=\"org-ul\">
<li>Camtasia Studio
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-6\" class=\"outline-3\">
<h3 id=\"sec-2-6\">PDF tools</h3>
<div class=\"outline-text-3\" id=\"text-2-6\">
<ul class=\"org-ul\">
<li>PDF reader 
<ul class=\"org-ul\">
<li>SumatraPDF: quick and refresh-able
</li>
<li>Acrobat: official/standard PDF reader, for some advanced features
(JScript support) 
</li>
</ul>
</li>
<li>PDF editor
<ul class=\"org-ul\">
<li>Foxit: fill PDF forms
</li>
<li>Acrobat Pro
</li>
</ul>
</li>
<li>Microsoft office suite
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2-7\" class=\"outline-3\">
<h3 id=\"sec-2-7\">Image editor</h3>
<div class=\"outline-text-3\" id=\"text-2-7\">
<ul class=\"org-ul\">
<li>Gimp: GUI
</li>
<li>Imagemagick: CLI
</li>
<li>Graphviz
</li>
</ul>
</div>
</div>
</div>

<div id=\"outline-container-sec-3\" class=\"outline-2\">
<h2 id=\"sec-3\">Research</h2>
<div class=\"outline-text-2\" id=\"text-3\">
<ul class=\"org-ul\">
<li>Emacs
</li>
<li>Texlive
</li>
<li>Jabref
</li>
<li>MATLAB
</li>
<li>Visual Studio
</li>
<li>TI CCS
</li>
</ul>
</div>
</div>
"

Speech and noise

导出博文信息 Speech and noise
属性
id
4
title
"Speech and noise"
timespamp
(21287 23668)
year
2014
month
3
day
17
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "idea" "idea" nil nil] [cl-struct-ob:tags "AIM" "aim" nil nil])
template
"blog_post.html"
filepath
"blog/2014/03"
filename
"speech-and-noise"
htmlfile
"blog/2014/03/17_speech-and-noise.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


Is it reasonable to assume:

- Speech enhancement algorithms are based on the understanding of speech
- Noise reduction algorithms are based on the understanding of noise

AIM belongs to the first category.
"
content-html
"<p>
Is it reasonable to assume:
</p>

<ul class=\"org-ul\">
<li>Speech enhancement algorithms are based on the understanding of speech
</li>
<li>Noise reduction algorithms are based on the understanding of noise
</li>
</ul>

<p>
AIM belongs to the first category.
</p>
"

Mathematics Terms Review

导出博文信息 Mathematics Terms Review
属性
id
5
title
"Mathematics Terms Review"
timespamp
(21253 12212)
year
2014
month
2
day
19
category
[cl-struct-ob:category "Blog" "blog"]
tags
nil
template
"blog_post.html"
filepath
"blog/2014/02"
filename
"mathematics-terms-review"
htmlfile
"blog/2014/02/19_mathematics-terms-review.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** Probability

- [[wiki:Quartile]]
- [[wiki:Box plot]]
- [[google:transformation of random variables]]
- [[http://pages.ucsd.edu/~ssaiegh/poli270.html][POLI 270: Mathematical and Statistical Foundations]]
- [[https://www.cl.cam.ac.uk/teaching/0708/Probabilty/][Cambridge Probability 2007-08]]
- [[http://math.arizona.edu/~jwatkins/math363s14.htm][Arizona Mathematics 363 Introduction to Statistical Methods Spring 2014]]
- 2\\sigma 95.4%
- 3\\sigma ??

** Linear algebra

- [[wiki:Symmetric matrix]]
- [[wiki:Hermitian matrix]]
- [[wiki:Orthonormal basis]]
- [[wiki:Eigendecomposition of a matrix]]
- [[wiki:Diagonal matrix]]
- [[wiki:Partial derivative]]
- [[wiki:Norm (mathematics)]]
- [[wiki:Matrix determinant lemma]]
- [[wiki:Matrix calculus]]
- [[wiki:Schur decomposition]]
- [[wiki:Invertible matrix]]
- [[wiki:Positive Definite Matrix]] 
- [[http://www.math.hmc.edu/math40-04/][Introduction to Linear Algebra Math 40, Harvey Mudd College]]
"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">Probability</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<ul class=\"org-ul\">
<li><i>wiki:Quartile</i>
</li>
<li><i>wiki:Box plot</i>
</li>
<li><i>google:transformation of random variables</i>
</li>
<li><a href=\"http://pages.ucsd.edu/~ssaiegh/poli270.html\">POLI 270: Mathematical and Statistical Foundations</a>
</li>
<li><a href=\"https://www.cl.cam.ac.uk/teaching/0708/Probabilty/\">Cambridge Probability 2007-08</a>
</li>
<li><a href=\"http://math.arizona.edu/~jwatkins/math363s14.htm\">Arizona Mathematics 363 Introduction to Statistical Methods Spring 2014</a>
</li>
<li>2&sigma; 95.4%
</li>
<li>3&sigma; ??
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">Linear algebra</h2>
<div class=\"outline-text-2\" id=\"text-2\">
<ul class=\"org-ul\">
<li><i>wiki:Symmetric matrix</i>
</li>
<li><i>wiki:Hermitian matrix</i>
</li>
<li><i>wiki:Orthonormal basis</i>
</li>
<li><i>wiki:Eigendecomposition of a matrix</i>
</li>
<li><i>wiki:Diagonal matrix</i>
</li>
<li><i>wiki:Partial derivative</i>
</li>
<li><i>wiki:Norm (mathematics)</i>
</li>
<li><i>wiki:Matrix determinant lemma</i>
</li>
<li><i>wiki:Matrix calculus</i>
</li>
<li><i>wiki:Schur decomposition</i>
</li>
<li><i>wiki:Invertible matrix</i>
</li>
<li><i>wiki:Positive Definite Matrix</i> 
</li>
<li><a href=\"http://www.math.hmc.edu/math40-04/\">Introduction to Linear Algebra Math 40, Harvey Mudd College</a>
</li>
</ul>
</div>
</div>
"

科大讯飞信息科技有限公司

导出博文信息 科大讯飞信息科技有限公司
属性
id
6
title
"科大讯飞信息科技有限公司"
timespamp
(21214 356)
year
2014
month
1
day
21
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "news" "news" nil nil] [cl-struct-ob:tags "china" "china" nil nil] [cl-struct-ob:tags "speech" "speech" nil nil] [cl-struct-ob:tags "industry" "industry" nil nil])
template
"blog_post.html"
filepath
"blog/2014/01"
filename
""
htmlfile
"blog/2014/01/21_.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** 链接

- [[http://www.iflytek.com/][科大讯飞官网]]

** 相关新闻 

*** [[http://digitalpaper.stdaily.com/http_www.kjrb.com/kjrb/html/2014-01/17/content_243263.htm?div=-1][科大讯飞:掌握语音产业话语权]] 吴长锋《科技日报》2014-01-17

[[file:oblog-phd/iflytek_news1.pdf][PDF文件存档]]

**** 创新驱动发展 

当下,语音技术应用在生活中早已是触手可及。走在路上,你会发现很多对着手
机“自言自语”的人。从18位大学生蹒跚创业,到领军中文语音技术龙头企业,彻
底打破国外巨头垄断格局,发展成为亚太地区最大的语音上市公司,掌握全球最
先进智能语音的核心技术,科大讯飞用了14年。

**** 走一条弯曲的直线

科大讯飞董事长刘庆峰用“走一条弯曲的直线”描述科大讯飞的创业历程。他说,
所谓直线是指目标明确、战略清晰,弯曲则意味着实现梦想和目标的过程曲折。

``2000年,我们开发出了语音平台产品,与华为、联想、英特尔等50多个开发商建
立了合作伙伴关系,但2001年的销售额离目标相差很大。我们也在问自己,要不
要坚持走这条路?''

让机器说话,用的是语音合成技术;让机器听懂人说话,用的是语音识别技术。
语音技术市场领域一直是国内外科学界和产业界关注的焦点和竞争的热点,科大
讯飞对语音技术的产业化前景始终充满信心。

如何在激烈的语音技术市场竞争中抢得发展先机?如何扭转国内语音应用市场被
国外巨头垄断的不利局面?如何克服大学生的自身不利因素实现技术与产业的突
破?答案只有一个,那就是自主创新。

科大讯飞通过核心源头技术整合,与国内在语音领域积累深厚而又最具优势互补
的中国科学技术大学、清华大学、中国社科院语言研究所成立紧密型联合实验室。
通过创新机制,使合作伙伴专注于其擅长的研究,科大讯飞统一实施产业化,从
源头技术上聚拢了语音的产业资源。

在此基础上,科大讯飞与国家普通话培训测试中心共建联合实验室,推动语音和
语言技术在语言文字培训、测试、评估和推广中的应用,逐步使该联合实验室成
为在国内外汉语语言文字信息化研究和应用推广方面具有广泛影响的重要基地。
与此同时,科大讯飞先后与新疆大学、内蒙古大学、西藏大学、云南大学、兰州
大学建立联合实验室,深入开展以维语、蒙古语、藏语等为主的多民族语音合成、
语音识别、语音评测、语音翻译等核心技术研发。

目前,科大讯飞已占有中文语音技术市场50%以上市场份额,在金融、电信、保险
等主流市场达80%以上,可以同时为全行业2000多家企业提供语音核心技术,并面
向移动互联网时代全球语音应用热潮率先推出了语音云平台,用户数已经突破3亿,
开发应用申请超过2万个,已逐步形成了以科大讯飞为核心的语音产业链,成为业
界公认的“语音产业国家队”,牢牢掌握了民族语音产业的话语权。

**** 应用驱动市场

在全世界范围内,语音技术走过了漫长的蛰伏期。随着智能手机兴起,语音技术
应用迎来了爆发性增长,真正进入到普通人的生活,开始了一个前所未有的快速
发展阶段。

``国内正在形成持续的语音产业价值链,市场应用正在大踏步前进。''刘庆峰认
为,目前中国在中英文语音产业方面的技术能力,已完全和世界一流同步。在产
品应用中,只有在电信级大规模应用上,与美国、日本相比还略有差距;在消费
类产品和终端产品方面的进展,反而超过了美国、韩国和日本。

成立之初,科大讯飞面临着如何最大限度地抢占市场的问题。讯飞长于技术,因
此企业定位从创业之始就很明确:做专业的语音技术提供商,专注于提供最核心
的语音技术,打造一个从核心技术到二次开发厂商,再到终端用户的产业链,使
得二次开发厂商能和科大讯飞一起携手合作,利益共享。科大讯飞不仅自己研发
语音技术产品,还凭借自身技术优势,为各行各业的开发商提供易用的语音开发
平台,为行业用户提供更加智能的语音技术解决方案,目前已与联想、华为、东
软、英特尔等合作,帮助他们在系统和产品中进行语音技术的二次开发和推广。

在市场应用上,科大讯飞重点打造语音产业基地,为加速形成围绕讯飞语音核心
技术的应用开发集群创造了条件,并积极探索创业业务模式,坚持``软件+硬件''
``软件+服务''的产品创新与商业模式创新,加速推动语音技术飞入千家万户。

2011年,国家智能语音高新技术产业化基地、语音及语言信息处理国家工程实验
室等国家级平台相继落户讯飞。为与之对应,科大讯飞加速了应用创新平台建设,
相继成立了语音平台与嵌入式研发部、口语评测研发部、通信增值研发部、行业
软件研发部等应用研发部门,真正实现了从基础研究、应用研究到市场应用的对
接。联合实验室负责人、研发部负责人、产品市场经理就某项创新进行面对面的
沟通,通过沟通交流,市场方向更加明确,技术研究更加专注。目前,科大讯飞
每年推出新产品20项以上,新产品销售收入占总收入比重超过80%。

**** 创新铸就品牌
 
科大讯飞始终认为,``一流企业满足市场,超一流企业创造市场''。要想创造出
竞争对手难以仿效的市场,就需要具备别人难以仿效的核心技术竞争优势,形成
差异化的竞争亮点,打造出中国语音产业的第一品牌。而科大讯飞研发支撑体系
建设,围绕语音技术从原始创新到技术成果商品化和产业化,形成完整的协作支
撑和运作体系,构建语音产业从核心技术到市场应用的全方位领先,形成竞争对
手难以模仿的优势。

多年来,科大讯飞在``顶天立地''发展战略的指引下,努力打造``iflytek
inside''品牌战略。通过核心技术的国际领先和研究成果大规模的产业化,使科
大讯飞品牌真正深入亿万家庭,真正实现``让世界聆听我们声音''的产业理想。

科大讯飞的中文语音合成技术在近年来历次国家863评比中均名列第一;英文语音
合成技术在2006—2012年连续7次蝉联国际英文合成大赛全球第一名,2008—2012年
连续5年在国际说话人、语种识别评测大赛中名列前茅;普通话口语评测技术是业
界唯一经国家语委评测可用于普通话等级考试的技术;嵌入式中文语音识别核心
技术上也处于业界领先行列。

通过多年积累,科大讯飞的语音技术现已广泛应用于电信、金融、社保、交通等
各行各业的信息服务之中,并开始在手机、汽车导航、学习机、Mp3/Mp4、智能玩
具等越来越多的数码终端产品以及汉语国际推广、国防等关键领域得到成功应用。
``未来,每一部手机、每一辆汽车、每一台家电、每一个玩具都将能听会说'',
这正是讯飞追求的梦想。
"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">链接</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<ul class=\"org-ul\">
<li><a href=\"http://www.iflytek.com/\">科大讯飞官网</a>
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">相关新闻</h2>
<div class=\"outline-text-2\" id=\"text-2\">
</div><div id=\"outline-container-sec-2-1\" class=\"outline-3\">
<h3 id=\"sec-2-1\"><a href=\"http://digitalpaper.stdaily.com/http_www.kjrb.com/kjrb/html/2014-01/17/content_243263.htm?div=-1\">科大讯飞:掌握语音产业话语权</a> 吴长锋《科技日报》2014-01-17</h3>
<div class=\"outline-text-3\" id=\"text-2-1\">
<p>
<a href=\"oblog-phd/iflytek_news1.pdf\">PDF文件存档</a>
</p>
</div>

<div id=\"outline-container-sec-2-1-1\" class=\"outline-4\">
<h4 id=\"sec-2-1-1\">创新驱动发展</h4>
<div class=\"outline-text-4\" id=\"text-2-1-1\">
<p>
当下,语音技术应用在生活中早已是触手可及。走在路上,你会发现很多对着手机“自言自语”的人。从18位大学生蹒跚创业,到领军中文语音技术龙头企业,彻底打破国外巨头垄断格局,发展成为亚太地区最大的语音上市公司,掌握全球最先进智能语音的核心技术,科大讯飞用了14年。
</p>
</div>
</div>

<div id=\"outline-container-sec-2-1-2\" class=\"outline-4\">
<h4 id=\"sec-2-1-2\">走一条弯曲的直线</h4>
<div class=\"outline-text-4\" id=\"text-2-1-2\">
<p>
科大讯飞董事长刘庆峰用“走一条弯曲的直线”描述科大讯飞的创业历程。他说,所谓直线是指目标明确、战略清晰,弯曲则意味着实现梦想和目标的过程曲折。
</p>

<p>
``2000年,我们开发出了语音平台产品,与华为、联想、英特尔等50多个开发商建立了合作伙伴关系,但2001年的销售额离目标相差很大。我们也在问自己,要不要坚持走这条路?''
</p>

<p>
让机器说话,用的是语音合成技术;让机器听懂人说话,用的是语音识别技术。语音技术市场领域一直是国内外科学界和产业界关注的焦点和竞争的热点,科大讯飞对语音技术的产业化前景始终充满信心。
</p>

<p>
如何在激烈的语音技术市场竞争中抢得发展先机?如何扭转国内语音应用市场被国外巨头垄断的不利局面?如何克服大学生的自身不利因素实现技术与产业的突破?答案只有一个,那就是自主创新。
</p>

<p>
科大讯飞通过核心源头技术整合,与国内在语音领域积累深厚而又最具优势互补的中国科学技术大学、清华大学、中国社科院语言研究所成立紧密型联合实验室。通过创新机制,使合作伙伴专注于其擅长的研究,科大讯飞统一实施产业化,从源头技术上聚拢了语音的产业资源。
</p>

<p>
在此基础上,科大讯飞与国家普通话培训测试中心共建联合实验室,推动语音和语言技术在语言文字培训、测试、评估和推广中的应用,逐步使该联合实验室成为在国内外汉语语言文字信息化研究和应用推广方面具有广泛影响的重要基地。与此同时,科大讯飞先后与新疆大学、内蒙古大学、西藏大学、云南大学、兰州大学建立联合实验室,深入开展以维语、蒙古语、藏语等为主的多民族语音合成、语音识别、语音评测、语音翻译等核心技术研发。
</p>

<p>
目前,科大讯飞已占有中文语音技术市场50%以上市场份额,在金融、电信、保险等主流市场达80%以上,可以同时为全行业2000多家企业提供语音核心技术,并面向移动互联网时代全球语音应用热潮率先推出了语音云平台,用户数已经突破3亿,开发应用申请超过2万个,已逐步形成了以科大讯飞为核心的语音产业链,成为业界公认的“语音产业国家队”,牢牢掌握了民族语音产业的话语权。
</p>
</div>
</div>

<div id=\"outline-container-sec-2-1-3\" class=\"outline-4\">
<h4 id=\"sec-2-1-3\">应用驱动市场</h4>
<div class=\"outline-text-4\" id=\"text-2-1-3\">
<p>
在全世界范围内,语音技术走过了漫长的蛰伏期。随着智能手机兴起,语音技术应用迎来了爆发性增长,真正进入到普通人的生活,开始了一个前所未有的快速发展阶段。
</p>

<p>
``国内正在形成持续的语音产业价值链,市场应用正在大踏步前进。''刘庆峰认为,目前中国在中英文语音产业方面的技术能力,已完全和世界一流同步。在产品应用中,只有在电信级大规模应用上,与美国、日本相比还略有差距;在消费类产品和终端产品方面的进展,反而超过了美国、韩国和日本。
</p>

<p>
成立之初,科大讯飞面临着如何最大限度地抢占市场的问题。讯飞长于技术,因此企业定位从创业之始就很明确:做专业的语音技术提供商,专注于提供最核心的语音技术,打造一个从核心技术到二次开发厂商,再到终端用户的产业链,使得二次开发厂商能和科大讯飞一起携手合作,利益共享。科大讯飞不仅自己研发语音技术产品,还凭借自身技术优势,为各行各业的开发商提供易用的语音开发平台,为行业用户提供更加智能的语音技术解决方案,目前已与联想、华为、东软、英特尔等合作,帮助他们在系统和产品中进行语音技术的二次开发和推广。
</p>

<p>
在市场应用上,科大讯飞重点打造语音产业基地,为加速形成围绕讯飞语音核心技术的应用开发集群创造了条件,并积极探索创业业务模式,坚持``软件+硬件''
``软件+服务''的产品创新与商业模式创新,加速推动语音技术飞入千家万户。
</p>

<p>
2011年,国家智能语音高新技术产业化基地、语音及语言信息处理国家工程实验室等国家级平台相继落户讯飞。为与之对应,科大讯飞加速了应用创新平台建设,相继成立了语音平台与嵌入式研发部、口语评测研发部、通信增值研发部、行业软件研发部等应用研发部门,真正实现了从基础研究、应用研究到市场应用的对接。联合实验室负责人、研发部负责人、产品市场经理就某项创新进行面对面的沟通,通过沟通交流,市场方向更加明确,技术研究更加专注。目前,科大讯飞每年推出新产品20项以上,新产品销售收入占总收入比重超过80%。
</p>
</div>
</div>

<div id=\"outline-container-sec-2-1-4\" class=\"outline-4\">
<h4 id=\"sec-2-1-4\">创新铸就品牌</h4>
<div class=\"outline-text-4\" id=\"text-2-1-4\">
<p>
科大讯飞始终认为,``一流企业满足市场,超一流企业创造市场''。要想创造出竞争对手难以仿效的市场,就需要具备别人难以仿效的核心技术竞争优势,形成差异化的竞争亮点,打造出中国语音产业的第一品牌。而科大讯飞研发支撑体系建设,围绕语音技术从原始创新到技术成果商品化和产业化,形成完整的协作支撑和运作体系,构建语音产业从核心技术到市场应用的全方位领先,形成竞争对手难以模仿的优势。
</p>

<p>
多年来,科大讯飞在``顶天立地''发展战略的指引下,努力打造``iflytek
inside''品牌战略。通过核心技术的国际领先和研究成果大规模的产业化,使科大讯飞品牌真正深入亿万家庭,真正实现``让世界聆听我们声音''的产业理想。
</p>

<p>
科大讯飞的中文语音合成技术在近年来历次国家863评比中均名列第一;英文语音合成技术在2006—2012年连续7次蝉联国际英文合成大赛全球第一名,2008—2012年连续5年在国际说话人、语种识别评测大赛中名列前茅;普通话口语评测技术是业界唯一经国家语委评测可用于普通话等级考试的技术;嵌入式中文语音识别核心技术上也处于业界领先行列。
</p>

<p>
通过多年积累,科大讯飞的语音技术现已广泛应用于电信、金融、社保、交通等各行各业的信息服务之中,并开始在手机、汽车导航、学习机、Mp3/Mp4、智能玩具等越来越多的数码终端产品以及汉语国际推广、国防等关键领域得到成功应用。
``未来,每一部手机、每一辆汽车、每一台家电、每一个玩具都将能听会说'',这正是讯飞追求的梦想。
</p>
</div>
</div>
</div>
</div>
"

中国助听器市场新闻几则

导出博文信息 中国助听器市场新闻几则
属性
id
7
title
"中国助听器市场新闻几则"
timespamp
(21212 45088)
year
2014
month
1
day
20
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "news" "news" nil nil] [cl-struct-ob:tags "china" "china" nil nil] [cl-struct-ob:tags "hearing aid" "hearing-aid" nil nil] [cl-struct-ob:tags "industry" "industry" nil nil])
template
"blog_post.html"
filepath
"blog/2014/01"
filename
""
htmlfile
"blog/2014/01/20_.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** 链接

- [[http://www.chineseaudiology.com/][中国听力学网]]

** 相关新闻

*** [[http://www.chineseaudiology.com/boke/html/20131785516.html][中国助听器发展回顾:阶段性和多元化]] 林学军《中国听力学网站》2013-10-22

中国已经成为全球助听器市场发展最快、潜力最大的一个特殊市场,并成为世界
主要助听器跨国企业的重要发展基地。根据中国听力学网
www.chineseaudiology.com 的报道,瑞士助听器企业Sonova、德国西门子、丹麦
的瑞声达等均将中国市场定义为未来增长的重镇,并加大投资,从生产到分销,
从验配到培训,无不凸显各自的决心和实力,加快各自在这个市场份额的扩展。

而在2013年来临之际,回顾中国助听器发展的历程也具有一定的启示意义。记者
在采访中国听力学网和业内专家以及相关企业的基础上,撰写出这份回顾中国助
听器发展简史,而阶段性和多元化发展正是这个时间不长的发展特征。

虽然中国本土助听器的生产和销售早在20世纪50年代由天津助听器厂开始,但是
由于技术和销售的不完善,一直到了上个世纪的80年代后期,随著国际助听器生
产厂商进入中国才拉开了中国助听器发展的帷幕。最先进入中国的是丹麦达那福
助听器公司(现丹麦大北集团瑞声达公司),他们率先到中国厦门设厂、生产助
听器,并在国内开始建立销售渠道,一时称雄全国。

进入90年代中期德国的西门子、瑞士的峰力集团、美国的斯达克公司、丹麦的奥
迪康和唯听公司、加拿大的优力康、瑞士的伯纳锋等国外主要助听器厂商开始大
举进入中国市场。相继在中国设立了工厂和销售中心。瑞士Sonova旗下的峰力集
团、德国的西门子和美国斯达克公司在苏州建厂,开始生产包括出口的各式助听
器和配件,丹麦的瑞声达仍然保留其在厦门的工厂。

同时,中国国内助听器生产厂商也开始起步,当时主要在福州(丽声)、成都
(微迪)和广东的小榄镇,后者目前依然是中国90%盒式机的生产基地。根据
2007年当时医疗器械出口统计,中国排在前十位的医疗器械出口产品中有三名是
助听器生产公司,德国的西门子排在第三、丹麦的瑞声达排在第6、瑞士的峰力集
团排在第九。

到了90年代后期,一些二线助听器品牌相继进入中国,比如日本松下、索尼和理
音(Rion)等日系企业,开始在中国建立代理销售,不过尚未在中国建立生产基
地。

伴随这些国际知名企业的到来,中国助听器行业开始进入了一个空前规模的快速
发展。国内的部分企业开始转向生产助听器,如广东中山市、江苏盐城市、天津
市、福建厦门市等地陆续建立了民营助听器工厂,主要生产低价位的盒式和中小
功率耳背式助听器。如前所述,盒式机的主要生产基地是在广东的小榄镇,这些
产品主要通过商业机构销售,数量较大,估计一年有近百万台的生产量。不过其
品种、质量尚不能与国外独资企业生产的产品相提并论。从国内当时几次强制性
助听器抽查结果来看,90%不合格的助听器主要来自国内的低端生产厂家。不过,
目前大部分助听器的生产质量基本符合国家标准。

当前,国际上最先进的助听器技术和产品在中国市场频频可见,从发布速度来看,
国内外产品发布品种等均处在同一时间,在市场上,从耳背机到深耳道机、从单
通道到多通道、从蓝也无线助听器到双耳互联助听器,具有各种专用功能的助听
器在市场比比皆是,并基本得到消费者认可。同时,国内部分企业生产的助听器
也开始获得一定的市场份额,比如位于厦门的欧仕达和新声、杭州的惠耳和成都
的微迪数字等企业,不但开始和国际巨头争夺助听器市场,还快速在国际市场占
据一席之地,为第三世界提供了大量的低价助听器。

因此从助听器技术和先进程度上讲,中国市场的助听器基本和世界一致,并且新
产品的发布也与发达国家同步。不过,中国市场助听器的验配、销售和使用因地
域和经济发展不平衡、行业机制不健全、国家相关法规政策尚在制定等原因,处
于发展阶段,全国各地水平参差不齐。

回顾助听器在中国市场过去几十年的发展,可以用阶段性和多元化来总结其发挥
咱的展特点以及趋势。

第一阶段:上世纪80年代末90年代初,以柜台式销售为主。其特征是大部分助听
器通过药店、百货商店里设立的药柜、医疗器械产品销售专柜进行销售。这个时
期助听器无验配过程,患者通过临场试戴效果决定是否购买。无售后服务,无须
专业测试等。 值得一提的是 1979年1月北京同仁医院、北京市耳鼻喉科研究所开
设了国内首家助听器门诊,由邓元诚负责,并通过天津助听器厂为患者定制耳模。
其后又定制耳内式助听器。由此开创了助听器国内专业选配的先河。

第二阶段:到90年代中、后期,开始引进助听器验配,进入一个相对规范和科学
化的阶段。除了医院开始增设验配中心外,开始出现以助听器专卖,以专业形式
进行销售。部分大城市开设了专业化程度较高的助听器专卖店。这个阶段的特征
是对患者听力进行检测,使用科学的方法对患者听力进行补偿,在此基础上验配
助听器。

在这个阶段,医院开始介入助听器的服务,如金济霖(阳中国医科大学第一附属
医院)盛今蕙(上海第一医科大学眼耳鼻喉科医院)、黄燮康(上海建工医院)、
许时辉(上海第一医院)、高成华(长春白求恩医科大学)、王尚礼(贵州医科
大学)、简栋梁(广州聋校)、彭汉初(山西医科大学第一附属医院)、徐丽蓉
/闵家琳(四川华西医院)、梁涛(江苏徐州,中国听力医学基金会)、张华和张
志勇(北京协和医院)、张建一和张正国(中国协和医大)、徐廷贵(南京海军
414医院)、王永华(浙江省中医学院)等全国各地耳鼻咽喉科出身为主的专家开
始在医院(医学院)设立听力门诊,为患者专业选配助听器,并为听障者提供康
复指导。而各地1200多所聋儿康复中心、800多所聋哑学校在各级残疾、民政部门、
教育局等领导下,纷纷成立各种形式的选配中心,对聋儿进行测听、助听器选配。
尤其是在聋儿康复方面做出了卓越的贡献。

从零售的角度来看,此时销售模式主要通过助听器生产商赞助形式设立以产品为
主的专卖店。发展最快的是德国和丹麦的厂家。此时专卖店的特点是买独家产品、
规模偏小、助听器验配的主要设备多由生产厂家赞助,如听力计、助听器测试仪、
耳模取样设备和材料等。

第三阶段:21世纪初到目前,助听器零售进入了一个我们称为多品牌销售的阶段,
虽然助听器生产商赞助的助听器店仍占市场一定份额,经营销售多家品牌助听器
的销售店越来越多,这放映了市场的需求,也是随助听器各品牌营销宣传后,消
费者逐渐了解了更多的助听器品牌,不局限对某单一品牌的选择,通过比较,最
后做出决策。这个阶段的助听器店规模逐渐增大,并且开始以连锁店的形式出现
在一些经济发达的大城市。部分助听器店的面积增加到60-150㎡左右,助听器验
配的技术和手段也越加成熟。科学化的验配、理性的消费行为、有规模的市场营
销、和医学专家的紧密配合、相关国家法规政策出台和逐步规范的市场监督、迅
速发展的助听器行业的配套服务等大大促进助听器的推广和使用。

目前中国有近3000家助听器专卖店和近1000家以医院为中心的助听器验配中心,
这些专业验配机构已经成为中国推广助听器的主要渠道。而国家采购量也逐年增
加,在刚刚颁布的国家“十二五”发展计划中,据悉期间仅助听器的投入将超过20
多亿元。

对于未来发展趋势,中国听力学网汉东声总编认为至少有三个趋势;一是助听器
零售渠道的整合式发展,区域性的大型连锁助听器企业将继续扩大其份额,并整
合当地的市场,成为主要的供应商;二是政府采购和医疗保险埋单将影响中国助
听器市场的价格、服务和竞争格局的新架构,目前残联作为最大的采购机构已经
将助听器采购价格压到零售价的20%以下,形成巨大的价格反差;三是助听器研发
技术在中国将成为一个重要的领域,将改变目前“研发在外,组装在内”的传统行
业模式,和其他行业一样,中国在未来10年将成为助听器的研发、生产和销售重
要市场。

汉东声总编说“中国助听器市场目前仅仅是国际市场的一个‘餐后甜点’,各大公司
80%以上的销售来自欧洲和北美,中国市场贡献率不到10%。不过,如果看到几年
前,中国市场销售才只有1%的话,其发展速度远比总量更为重要。中国听力学网
看好中国助听器市场未来的发展以及对全球市场的影响。”

*** [[http://health.sohu.com/20041117/n223025997.shtml][中国助听器市场95%为洋产品 主攻儿童市场]] 吴佶谊《信息时报》2004-11-17

**** 6大国际知名助听器厂家进入中国皆主攻儿童市场

几百近千元的国产助听器少人问津,上万元的洋助听器却非常畅销!国外产品占
据了我国九成以上助听器市场,而且, 几万元的儿童高端产品一直风头不减。受
高额利润支使,近年洋助听器产品纷纷抛弃庞大的老年人市场,面向儿童的产品
占据大半江山。

**** 洋助听器主攻儿童市场

“国外的助听器市场主要是针对老年人的,但中国市场截然不同,老人助听器卖不
动,儿童助听器越贵越好卖。我们开始以老年产品为主,很难打开市场,后来转
攻儿童市场,情况就好了很多。” 日前,维听助听器上海有限公司销售部经理高
司备接受记者采访时如是说。

记者在采访中了解到,中国的助听器市场近年表现出明显的“一边倒”趋势:本应
成为市场主力的老年人用助听器一直“疲软”,且对价格异常敏感,稍有风吹草动
销售马上急剧下降,尤其针对老年人的高价位助听器一直“蹒跚”前行,增长速度
非常有限;而与之形成鲜明对照的是,中国市场对于儿童用助听器接受程度非常
高,几万元的高端产品一直风头不减。

受高额利润支使,洋助听器纷纷进入中国,记者在采访中了解到,目前洋助听器
占据了95%以上的国内市场,而且纷纷抛弃老人市场,主攻儿童市场。

**** 医院为唯一销售渠道

据了解,助听器在国外在各大商超都可以买到,但是在中国除了西门在中国拥有
门店外,其他“洋巨头”都毅然选择了把医院作为攻城略地的唯一渠道。据了解,
目前国际上的6家知名助听器厂家已经全部进入中国。与其它领域激烈火拼不同的
是,几大巨头在中国市场上一直相安无事。

高司备告诉记者,维听从1998年进入中国以来,销售网络锁定在医院和各大城市。
在广州,目前主要是通过中山医科大学、儿童医院、南方医院等医疗机构进行销
售。“我们只有而且仅有一级代理商,也不会设立门店。我们的市场开拓就是依靠
医院进行,而自己做的就是建立起与之相联接的售后专业服务中心。”

据了解,虽然维听没有设立任何门店,但是维听在中国市场一直保持30%以上的增
长率,“我们要求我们的代理商至少从事助听器验配行业5年以上,而中国国内开
设听力专业仅仅2年不到,外国巨头近来也就几年的时间,我们的这个要求实际上
就把已经有成熟网络的人从源头上抓在手里了,这个市场很大。可以这么说,在
中国助听器市场门店的作用、折扣的功效远远比不上人的深耕细作开拓出来的市
场。”

借助医院单一的销售渠道是否能支持长久的发展?高司贝表示,以医院为主要渠
道的好处是门诊量大,患者相信医生专业的推荐,但坏处也很明显,如医生的流
动性比较大,一个医生的流动可能意味着这个市场立即就没有了。
"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">链接</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<ul class=\"org-ul\">
<li><a href=\"http://www.chineseaudiology.com/\">中国听力学网</a>
</li>
</ul>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">相关新闻</h2>
<div class=\"outline-text-2\" id=\"text-2\">
</div><div id=\"outline-container-sec-2-1\" class=\"outline-3\">
<h3 id=\"sec-2-1\"><a href=\"http://www.chineseaudiology.com/boke/html/20131785516.html\">中国助听器发展回顾:阶段性和多元化</a> 林学军《中国听力学网站》2013-10-22</h3>
<div class=\"outline-text-3\" id=\"text-2-1\">
<p>
中国已经成为全球助听器市场发展最快、潜力最大的一个特殊市场,并成为世界主要助听器跨国企业的重要发展基地。根据中国听力学网
www.chineseaudiology.com 的报道,瑞士助听器企业Sonova、德国西门子、丹麦的瑞声达等均将中国市场定义为未来增长的重镇,并加大投资,从生产到分销,从验配到培训,无不凸显各自的决心和实力,加快各自在这个市场份额的扩展。
</p>

<p>
而在2013年来临之际,回顾中国助听器发展的历程也具有一定的启示意义。记者在采访中国听力学网和业内专家以及相关企业的基础上,撰写出这份回顾中国助听器发展简史,而阶段性和多元化发展正是这个时间不长的发展特征。
</p>

<p>
虽然中国本土助听器的生产和销售早在20世纪50年代由天津助听器厂开始,但是由于技术和销售的不完善,一直到了上个世纪的80年代后期,随著国际助听器生产厂商进入中国才拉开了中国助听器发展的帷幕。最先进入中国的是丹麦达那福助听器公司(现丹麦大北集团瑞声达公司),他们率先到中国厦门设厂、生产助听器,并在国内开始建立销售渠道,一时称雄全国。
</p>

<p>
进入90年代中期德国的西门子、瑞士的峰力集团、美国的斯达克公司、丹麦的奥迪康和唯听公司、加拿大的优力康、瑞士的伯纳锋等国外主要助听器厂商开始大举进入中国市场。相继在中国设立了工厂和销售中心。瑞士Sonova旗下的峰力集团、德国的西门子和美国斯达克公司在苏州建厂,开始生产包括出口的各式助听器和配件,丹麦的瑞声达仍然保留其在厦门的工厂。
</p>

<p>
同时,中国国内助听器生产厂商也开始起步,当时主要在福州(丽声)、成都(微迪)和广东的小榄镇,后者目前依然是中国90%盒式机的生产基地。根据
2007年当时医疗器械出口统计,中国排在前十位的医疗器械出口产品中有三名是助听器生产公司,德国的西门子排在第三、丹麦的瑞声达排在第6、瑞士的峰力集团排在第九。
</p>

<p>
到了90年代后期,一些二线助听器品牌相继进入中国,比如日本松下、索尼和理音(Rion)等日系企业,开始在中国建立代理销售,不过尚未在中国建立生产基地。
</p>

<p>
伴随这些国际知名企业的到来,中国助听器行业开始进入了一个空前规模的快速发展。国内的部分企业开始转向生产助听器,如广东中山市、江苏盐城市、天津市、福建厦门市等地陆续建立了民营助听器工厂,主要生产低价位的盒式和中小功率耳背式助听器。如前所述,盒式机的主要生产基地是在广东的小榄镇,这些产品主要通过商业机构销售,数量较大,估计一年有近百万台的生产量。不过其品种、质量尚不能与国外独资企业生产的产品相提并论。从国内当时几次强制性助听器抽查结果来看,90%不合格的助听器主要来自国内的低端生产厂家。不过,目前大部分助听器的生产质量基本符合国家标准。
</p>

<p>
当前,国际上最先进的助听器技术和产品在中国市场频频可见,从发布速度来看,国内外产品发布品种等均处在同一时间,在市场上,从耳背机到深耳道机、从单通道到多通道、从蓝也无线助听器到双耳互联助听器,具有各种专用功能的助听器在市场比比皆是,并基本得到消费者认可。同时,国内部分企业生产的助听器也开始获得一定的市场份额,比如位于厦门的欧仕达和新声、杭州的惠耳和成都的微迪数字等企业,不但开始和国际巨头争夺助听器市场,还快速在国际市场占据一席之地,为第三世界提供了大量的低价助听器。
</p>

<p>
因此从助听器技术和先进程度上讲,中国市场的助听器基本和世界一致,并且新产品的发布也与发达国家同步。不过,中国市场助听器的验配、销售和使用因地域和经济发展不平衡、行业机制不健全、国家相关法规政策尚在制定等原因,处于发展阶段,全国各地水平参差不齐。
</p>

<p>
回顾助听器在中国市场过去几十年的发展,可以用阶段性和多元化来总结其发挥咱的展特点以及趋势。
</p>

<p>
第一阶段:上世纪80年代末90年代初,以柜台式销售为主。其特征是大部分助听器通过药店、百货商店里设立的药柜、医疗器械产品销售专柜进行销售。这个时期助听器无验配过程,患者通过临场试戴效果决定是否购买。无售后服务,无须专业测试等。 值得一提的是 1979年1月北京同仁医院、北京市耳鼻喉科研究所开设了国内首家助听器门诊,由邓元诚负责,并通过天津助听器厂为患者定制耳模。其后又定制耳内式助听器。由此开创了助听器国内专业选配的先河。
</p>

<p>
第二阶段:到90年代中、后期,开始引进助听器验配,进入一个相对规范和科学化的阶段。除了医院开始增设验配中心外,开始出现以助听器专卖,以专业形式进行销售。部分大城市开设了专业化程度较高的助听器专卖店。这个阶段的特征是对患者听力进行检测,使用科学的方法对患者听力进行补偿,在此基础上验配助听器。
</p>

<p>
在这个阶段,医院开始介入助听器的服务,如金济霖(阳中国医科大学第一附属医院)盛今蕙(上海第一医科大学眼耳鼻喉科医院)、黄燮康(上海建工医院)、许时辉(上海第一医院)、高成华(长春白求恩医科大学)、王尚礼(贵州医科大学)、简栋梁(广州聋校)、彭汉初(山西医科大学第一附属医院)、徐丽蓉
/闵家琳(四川华西医院)、梁涛(江苏徐州,中国听力医学基金会)、张华和张志勇(北京协和医院)、张建一和张正国(中国协和医大)、徐廷贵(南京海军
414医院)、王永华(浙江省中医学院)等全国各地耳鼻咽喉科出身为主的专家开始在医院(医学院)设立听力门诊,为患者专业选配助听器,并为听障者提供康复指导。而各地1200多所聋儿康复中心、800多所聋哑学校在各级残疾、民政部门、教育局等领导下,纷纷成立各种形式的选配中心,对聋儿进行测听、助听器选配。尤其是在聋儿康复方面做出了卓越的贡献。
</p>

<p>
从零售的角度来看,此时销售模式主要通过助听器生产商赞助形式设立以产品为主的专卖店。发展最快的是德国和丹麦的厂家。此时专卖店的特点是买独家产品、规模偏小、助听器验配的主要设备多由生产厂家赞助,如听力计、助听器测试仪、耳模取样设备和材料等。
</p>

<p>
第三阶段:21世纪初到目前,助听器零售进入了一个我们称为多品牌销售的阶段,虽然助听器生产商赞助的助听器店仍占市场一定份额,经营销售多家品牌助听器的销售店越来越多,这放映了市场的需求,也是随助听器各品牌营销宣传后,消费者逐渐了解了更多的助听器品牌,不局限对某单一品牌的选择,通过比较,最后做出决策。这个阶段的助听器店规模逐渐增大,并且开始以连锁店的形式出现在一些经济发达的大城市。部分助听器店的面积增加到60-150㎡左右,助听器验配的技术和手段也越加成熟。科学化的验配、理性的消费行为、有规模的市场营销、和医学专家的紧密配合、相关国家法规政策出台和逐步规范的市场监督、迅速发展的助听器行业的配套服务等大大促进助听器的推广和使用。
</p>

<p>
目前中国有近3000家助听器专卖店和近1000家以医院为中心的助听器验配中心,这些专业验配机构已经成为中国推广助听器的主要渠道。而国家采购量也逐年增加,在刚刚颁布的国家“十二五”发展计划中,据悉期间仅助听器的投入将超过20
多亿元。
</p>

<p>
对于未来发展趋势,中国听力学网汉东声总编认为至少有三个趋势;一是助听器零售渠道的整合式发展,区域性的大型连锁助听器企业将继续扩大其份额,并整合当地的市场,成为主要的供应商;二是政府采购和医疗保险埋单将影响中国助听器市场的价格、服务和竞争格局的新架构,目前残联作为最大的采购机构已经将助听器采购价格压到零售价的20%以下,形成巨大的价格反差;三是助听器研发技术在中国将成为一个重要的领域,将改变目前“研发在外,组装在内”的传统行业模式,和其他行业一样,中国在未来10年将成为助听器的研发、生产和销售重要市场。
</p>

<p>
汉东声总编说“中国助听器市场目前仅仅是国际市场的一个‘餐后甜点’,各大公司
80%以上的销售来自欧洲和北美,中国市场贡献率不到10%。不过,如果看到几年前,中国市场销售才只有1%的话,其发展速度远比总量更为重要。中国听力学网看好中国助听器市场未来的发展以及对全球市场的影响。”
</p>
</div>
</div>

<div id=\"outline-container-sec-2-2\" class=\"outline-3\">
<h3 id=\"sec-2-2\"><a href=\"http://health.sohu.com/20041117/n223025997.shtml\">中国助听器市场95%为洋产品 主攻儿童市场</a> 吴佶谊《信息时报》2004-11-17</h3>
<div class=\"outline-text-3\" id=\"text-2-2\">
</div><div id=\"outline-container-sec-2-2-1\" class=\"outline-4\">
<h4 id=\"sec-2-2-1\">6大国际知名助听器厂家进入中国皆主攻儿童市场</h4>
<div class=\"outline-text-4\" id=\"text-2-2-1\">
<p>
几百近千元的国产助听器少人问津,上万元的洋助听器却非常畅销!国外产品占据了我国九成以上助听器市场,而且, 几万元的儿童高端产品一直风头不减。受高额利润支使,近年洋助听器产品纷纷抛弃庞大的老年人市场,面向儿童的产品占据大半江山。
</p>
</div>
</div>

<div id=\"outline-container-sec-2-2-2\" class=\"outline-4\">
<h4 id=\"sec-2-2-2\">洋助听器主攻儿童市场</h4>
<div class=\"outline-text-4\" id=\"text-2-2-2\">
<p>
“国外的助听器市场主要是针对老年人的,但中国市场截然不同,老人助听器卖不动,儿童助听器越贵越好卖。我们开始以老年产品为主,很难打开市场,后来转攻儿童市场,情况就好了很多。” 日前,维听助听器上海有限公司销售部经理高司备接受记者采访时如是说。
</p>

<p>
记者在采访中了解到,中国的助听器市场近年表现出明显的“一边倒”趋势:本应成为市场主力的老年人用助听器一直“疲软”,且对价格异常敏感,稍有风吹草动销售马上急剧下降,尤其针对老年人的高价位助听器一直“蹒跚”前行,增长速度非常有限;而与之形成鲜明对照的是,中国市场对于儿童用助听器接受程度非常高,几万元的高端产品一直风头不减。
</p>

<p>
受高额利润支使,洋助听器纷纷进入中国,记者在采访中了解到,目前洋助听器占据了95%以上的国内市场,而且纷纷抛弃老人市场,主攻儿童市场。
</p>
</div>
</div>

<div id=\"outline-container-sec-2-2-3\" class=\"outline-4\">
<h4 id=\"sec-2-2-3\">医院为唯一销售渠道</h4>
<div class=\"outline-text-4\" id=\"text-2-2-3\">
<p>
据了解,助听器在国外在各大商超都可以买到,但是在中国除了西门在中国拥有门店外,其他“洋巨头”都毅然选择了把医院作为攻城略地的唯一渠道。据了解,目前国际上的6家知名助听器厂家已经全部进入中国。与其它领域激烈火拼不同的是,几大巨头在中国市场上一直相安无事。
</p>

<p>
高司备告诉记者,维听从1998年进入中国以来,销售网络锁定在医院和各大城市。在广州,目前主要是通过中山医科大学、儿童医院、南方医院等医疗机构进行销售。“我们只有而且仅有一级代理商,也不会设立门店。我们的市场开拓就是依靠医院进行,而自己做的就是建立起与之相联接的售后专业服务中心。”
</p>

<p>
据了解,虽然维听没有设立任何门店,但是维听在中国市场一直保持30%以上的增长率,“我们要求我们的代理商至少从事助听器验配行业5年以上,而中国国内开设听力专业仅仅2年不到,外国巨头近来也就几年的时间,我们的这个要求实际上就把已经有成熟网络的人从源头上抓在手里了,这个市场很大。可以这么说,在中国助听器市场门店的作用、折扣的功效远远比不上人的深耕细作开拓出来的市场。”
</p>

<p>
借助医院单一的销售渠道是否能支持长久的发展?高司贝表示,以医院为主要渠道的好处是门诊量大,患者相信医生专业的推荐,但坏处也很明显,如医生的流动性比较大,一个医生的流动可能意味着这个市场立即就没有了。
</p>
</div>
</div>
</div>
</div>
"

读博5个月的体会

导出博文信息 读博5个月的体会
属性
id
8
title
"读博5个月的体会"
timespamp
(21212 16708)
year
2014
month
1
day
19
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "review" "review" nil nil])
template
"blog_post.html"
filepath
"blog/2014/01"
filename
"5"
htmlfile
"blog/2014/01/19_5.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


在过春节前总结一下自己的体会:

** 目标

在自己并不年轻时开始读博尤其需要明确目标。3年的时间对30多岁的人是非常
大的成本,能收获到足够的人生资本非常重要。通过过去的5个月,我的目标更
清晰了。

1. 获得博士学位
   1) 为未来自己的事业提供一个更高的起点。
   2) 和小马哥一样,证明``我拿的回自己失去的''
   3) 弄清英国和欧洲学术圈的规则
2. 学术界入门
   1) 选择好自己的研究方向
   2) 在相关领域积累一定的知识和成果(多看书,多发点文章、专利等)
   3) 多接触认识该领域的专家,争取能进入他们的圈子(多参加会议)
   4) 联系国内的关系,为将来回国任教做做铺垫(多搜索国内高校的信息,联
      系一些人)
3. 海外工作经验
   1) 体验一下欧洲工业界(读博期间各种在欧洲的workshop机会要好好珍惜,
      那些公司可能是我潜在的雇主)
   2) 接触欧洲行业内主要的公司,争取能去实习一下,为将来的工作职位谋出
      路。
   3) 了解国内行业内的情况,为今后回国发展铺铺路。
   4) 是否能拿到管理方向的硕士学位一个,为今后转型奠定基础
4. 海外生活
   1) 适应海外生活方式
   2) 提升生活能力
   3) 提高英文能力

** 动力

在这么长的时间内,自我不断的精神激励非常重要。在目标明确的前提下,长时
间动力的来源是

1. 实现个人价值
2. 履行家庭责任

亲人的情感支撑对我很重要。保持高昂的斗志和动力是解决做事情拖拉,难开始
的唯一办法。

** 节奏

长时间以来自己很大的缺点

1. 掌握不好生活工作的节奏
2. 有计划无执行力,拖拉,时间浪费严重
3. 并行处理事务能力差

这些其实都是``节奏感''不好的表现。如果需要让自己更进一步,优秀的节奏感
非常重要。这就需要对自我有清醒准确的认知,并要有时间计划和自我控制的能
力。

** 对策

1. 心中时刻保持激励
2. 时间用到刀刃上
3. 做事要流畅:尽量在不犹豫不反复的状态下初步完成一件事,期间有问题的话
   先迅速记录,以后有条件再精细化(罗马不是一天建成)。
4. 做可行的工作计划并一定完成计划
5. 多写点心得体会心情感受等等。在茫然或是闲的时间来写,即使自我鞭策又
   是一种情绪释放减压。中英文都要写。
"
content-html
"<p>
在过春节前总结一下自己的体会:
</p>

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">目标</h2>
<div class=\"outline-text-2\" id=\"text-1\">
<p>
在自己并不年轻时开始读博尤其需要明确目标。3年的时间对30多岁的人是非常大的成本,能收获到足够的人生资本非常重要。通过过去的5个月,我的目标更清晰了。
</p>

<ol class=\"org-ol\">
<li>获得博士学位
<ol class=\"org-ol\">
<li>为未来自己的事业提供一个更高的起点。
</li>
<li>和小马哥一样,证明``我拿的回自己失去的''
</li>
<li>弄清英国和欧洲学术圈的规则
</li>
</ol>
</li>
<li>学术界入门
<ol class=\"org-ol\">
<li>选择好自己的研究方向
</li>
<li>在相关领域积累一定的知识和成果(多看书,多发点文章、专利等)
</li>
<li>多接触认识该领域的专家,争取能进入他们的圈子(多参加会议)
</li>
<li>联系国内的关系,为将来回国任教做做铺垫(多搜索国内高校的信息,联系一些人)
</li>
</ol>
</li>
<li>海外工作经验
<ol class=\"org-ol\">
<li>体验一下欧洲工业界(读博期间各种在欧洲的workshop机会要好好珍惜,那些公司可能是我潜在的雇主)
</li>
<li>接触欧洲行业内主要的公司,争取能去实习一下,为将来的工作职位谋出路。
</li>
<li>了解国内行业内的情况,为今后回国发展铺铺路。
</li>
<li>是否能拿到管理方向的硕士学位一个,为今后转型奠定基础
</li>
</ol>
</li>
<li>海外生活
<ol class=\"org-ol\">
<li>适应海外生活方式
</li>
<li>提升生活能力
</li>
<li>提高英文能力
</li>
</ol>
</li>
</ol>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">动力</h2>
<div class=\"outline-text-2\" id=\"text-2\">
<p>
在这么长的时间内,自我不断的精神激励非常重要。在目标明确的前提下,长时间动力的来源是
</p>

<ol class=\"org-ol\">
<li>实现个人价值
</li>
<li>履行家庭责任
</li>
</ol>

<p>
亲人的情感支撑对我很重要。保持高昂的斗志和动力是解决做事情拖拉,难开始的唯一办法。
</p>
</div>
</div>

<div id=\"outline-container-sec-3\" class=\"outline-2\">
<h2 id=\"sec-3\">节奏</h2>
<div class=\"outline-text-2\" id=\"text-3\">
<p>
长时间以来自己很大的缺点
</p>

<ol class=\"org-ol\">
<li>掌握不好生活工作的节奏
</li>
<li>有计划无执行力,拖拉,时间浪费严重
</li>
<li>并行处理事务能力差
</li>
</ol>

<p>
这些其实都是``节奏感''不好的表现。如果需要让自己更进一步,优秀的节奏感非常重要。这就需要对自我有清醒准确的认知,并要有时间计划和自我控制的能力。
</p>
</div>
</div>

<div id=\"outline-container-sec-4\" class=\"outline-2\">
<h2 id=\"sec-4\">对策</h2>
<div class=\"outline-text-2\" id=\"text-4\">
<ol class=\"org-ol\">
<li>心中时刻保持激励
</li>
<li>时间用到刀刃上
</li>
<li>做事要流畅:尽量在不犹豫不反复的状态下初步完成一件事,期间有问题的话先迅速记录,以后有条件再精细化(罗马不是一天建成)。
</li>
<li>做可行的工作计划并一定完成计划
</li>
<li>多写点心得体会心情感受等等。在茫然或是闲的时间来写,即使自我鞭策又是一种情绪释放减压。中英文都要写。
</li>
</ol>
</div>
</div>
"

Tips for Reading Academic and Technical Literatures

导出博文信息 Tips for Reading Academic and Technical Literatures
属性
id
9
title
"Tips for Reading Academic and Technical Literatures"
timespamp
(21206 42184)
year
2014
month
1
day
15
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "read" "read" nil nil] [cl-struct-ob:tags "tips" "tips" nil nil])
template
"blog_post.html"
filepath
"blog/2014/01"
filename
"tips-for-reading-academic-and-technical-literatures"
htmlfile
"blog/2014/01/15_tips-for-reading-academic-and-technical-literatures.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


1. 不动笔墨不读书 (英文有一样的说法 always have a pen by your side?
   Check!)
2. 使用纸笔记笔记比用电脑软件方便。(便携,画图,标识)
3. 使用易于重新装订的笔记本(refile-able writing pad)
4. 使用各种颜色的铅笔(可涂改)
5. 打印要阅读的文章(可以高亮重点内容,可以在页面加入标注、笔记)
6. 为文章每个段落标号以便于索引
7. 一条笔记至少占一页
8. 为每一条笔记标记时间日期和对应阅读文献的bibtex key以便于归档,记录每
   条笔记对应文章的段落标号
9. 每条笔记有自己的标题和标记(title and tags)
10. 阅读完毕后后使用扫描仪存档笔记和标注过的文章。
11. 到达一定时间或阶段后复习(review)笔记,并按照一点逻辑组织他们(refile)。
12. 组织完毕用扫描仪再次扫描存档。
"
content-html
"<ol class=\"org-ol\">
<li>不动笔墨不读书 (英文有一样的说法 always have a pen by your side?
Check!)
</li>
<li>使用纸笔记笔记比用电脑软件方便。(便携,画图,标识)
</li>
<li>使用易于重新装订的笔记本(refile-able writing pad)
</li>
<li>使用各种颜色的铅笔(可涂改)
</li>
<li>打印要阅读的文章(可以高亮重点内容,可以在页面加入标注、笔记)
</li>
<li>为文章每个段落标号以便于索引
</li>
<li>一条笔记至少占一页
</li>
<li>为每一条笔记标记时间日期和对应阅读文献的bibtex key以便于归档,记录每条笔记对应文章的段落标号
</li>
<li>每条笔记有自己的标题和标记(title and tags)
</li>
<li>阅读完毕后后使用扫描仪存档笔记和标注过的文章。
</li>
<li>到达一定时间或阶段后复习(review)笔记,并按照一点逻辑组织他们(refile)。
</li>
<li>组织完毕用扫描仪再次扫描存档。
</li>
</ol>
"

图书推荐《The Study Skills Handbook》by S. Cottrell

导出博文信息 图书推荐《The Study Skills Handbook》by S. Cottrell
属性
id
10
title
"图书推荐《The Study Skills Handbook》by S. Cottrell"
timespamp
(21170 15580)
year
2013
month
12
day
19
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "book" "book" nil nil])
template
"blog_post.html"
filepath
"blog/2013/12"
filename
"the-study-skills-handbookby-s-cottrell"
htmlfile
"blog/2013/12/19_the-study-skills-handbookby-s-cottrell.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


今天到图书馆转悠,发现了这本不错的大学学习方法指导书。一口气看完还扫描
了下来。

本书英文简单,图片有趣,容易理解。阅读后不仅能知道自己的学习,还能加深
对英国大学教育体系的理解。书中包括了大学学习中必须的各种技能:

- 心理调节
- 时间管理
- 团队协作
- 职业规划
- 阅读方法
- 学术写作
- 入学准备
- 考试准备

不是泛泛而谈,而是非常实际可行的方法。

虽然本书目标受众是即将进入大学的高中生或大一新生,但是提到的各种方法却
是通用的。英文很简单,我看完整本一个单词也没有查。推荐使用书中提到的阅
读方法来读这本书。
"
content-html
"<p>
今天到图书馆转悠,发现了这本不错的大学学习方法指导书。一口气看完还扫描了下来。
</p>

<p>
本书英文简单,图片有趣,容易理解。阅读后不仅能知道自己的学习,还能加深对英国大学教育体系的理解。书中包括了大学学习中必须的各种技能:
</p>

<ul class=\"org-ul\">
<li>心理调节
</li>
<li>时间管理
</li>
<li>团队协作
</li>
<li>职业规划
</li>
<li>阅读方法
</li>
<li>学术写作
</li>
<li>入学准备
</li>
<li>考试准备
</li>
</ul>

<p>
不是泛泛而谈,而是非常实际可行的方法。
</p>

<p>
虽然本书目标受众是即将进入大学的高中生或大一新生,但是提到的各种方法却是通用的。英文很简单,我看完整本一个单词也没有查。推荐使用书中提到的阅读方法来读这本书。
</p>
"

真正了解自己是做任何计划的基础

导出博文信息 真正了解自己是做任何计划的基础
属性
id
11
title
"真正了解自己是做任何计划的基础"
timespamp
(21150 21240)
year
2013
month
12
day
3
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "review" "review" nil nil])
template
"blog_post.html"
filepath
"blog/2013/12"
filename
""
htmlfile
"blog/2013/12/03_.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


终于还是没赶上按时交作业,一耽误还是3天,要扣30%的分数啊。
这是一次惨痛的教训。有几点一定要牢记。

- 要充分了解自己的工作效率。时间的安排要合理可行,而不是无法完成的理想
  化计划。
- 要全心投入工作,不要拖拉,因为我现在做的就是自己喜欢的事情。
- 对重要的任务要提早收集相关的信息,了解大部分细节。比如这次就没有了解
  交作业的时间地点方式等,导致今天不能交上作业。
- 重要的任务要预留时间余量,因为可能会有意外事情。比如这次的生病。
"
content-html
"<p>
终于还是没赶上按时交作业,一耽误还是3天,要扣30%的分数啊。这是一次惨痛的教训。有几点一定要牢记。
</p>

<ul class=\"org-ul\">
<li>要充分了解自己的工作效率。时间的安排要合理可行,而不是无法完成的理想化计划。
</li>
<li>要全心投入工作,不要拖拉,因为我现在做的就是自己喜欢的事情。
</li>
<li>对重要的任务要提早收集相关的信息,了解大部分细节。比如这次就没有了解交作业的时间地点方式等,导致今天不能交上作业。
</li>
<li>重要的任务要预留时间余量,因为可能会有意外事情。比如这次的生病。
</li>
</ul>
"

今天特别想牛牛

导出博文信息 今天特别想牛牛
属性
id
12
title
"今天特别想牛牛"
timespamp
(21147 49368)
year
2013
month
12
day
1
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "family" "family" nil nil])
template
"blog_post.html"
filepath
"blog/2013/12"
filename
""
htmlfile
"blog/2013/12/01_.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


今天赶PPH的作业,肯定是一夜无眠了。不知道为什么这种时候我反而容易想起亲
人。网上《爸爸上哪儿》的节目红的很。也是牛牛现在最爱的电视节目。有点想
掉眼泪。如果不是我的耽搁,家人现在也不会天各一方的分离。突然好想放下一
切去寻找家人,和他们团聚。不管如何,我一点要在春节和他们聚聚吧。不然会
受不了的。安排好时间,只做有用的事情。腾出时间来和家人多在一起,这对我
才是最重要的。好想你们啊。
"
content-html
"<p>
今天赶PPH的作业,肯定是一夜无眠了。不知道为什么这种时候我反而容易想起亲人。网上《爸爸上哪儿》的节目红的很。也是牛牛现在最爱的电视节目。有点想掉眼泪。如果不是我的耽搁,家人现在也不会天各一方的分离。突然好想放下一切去寻找家人,和他们团聚。不管如何,我一点要在春节和他们聚聚吧。不然会受不了的。安排好时间,只做有用的事情。腾出时间来和家人多在一起,这对我才是最重要的。好想你们啊。
</p>
"

开发环境搭建

导出博文信息 开发环境搭建
属性
id
13
title
"开发环境搭建"
timespamp
(21073 38672)
year
2013
month
10
day
6
category
[cl-struct-ob:category "Blog" "blog"]
tags
([cl-struct-ob:tags "matlab" "matlab" nil nil] [cl-struct-ob:tags "xpc" "xpc" nil nil] [cl-struct-ob:tags "speedgoat" "speedgoat" nil nil])
template
"blog_post.html"
filepath
"blog/2013/10"
filename
""
htmlfile
"blog/2013/10/06_.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


Cochlear 公司提供的模块只能在 MATLAB 2012a 及以下的版本运行。这带来不少的麻烦。
需要完成配置

- 软件环境:
  1) Windows 7 64-bit
  2) MATLAB 2012a 64-bit [fn::这里必须说一下,如果 64-bit 的 Windows7
     安装了 32-bit 的 MATLAB,将无法 使用 xPC 连接 target machine。]
  3) Windows SDK 7.1, or Visual Studio 10.0 Professional with SP1
  4) Speedgoat driver 7
- 硬件环境:
  1) Desktop PC
  2) Speedgoat target machine
     - 1615 (new)
     - 1273 (old)

** Speedgoat 公司的回复                                            :noexport:

#+BEGIN_QUOTE 
Dear Kim,

Below I’m sending you the link to download and instruction to install
the latest Speedgoat library. You can use this library from MATLAB
2009a to 2013b.

Furthermore you find the link for the “Speedgoat quick start guide”
and “target machine user manual” that describes how to set up the
target and host pc.

 Once installed the library you can transfer the kernel following the
 procedure described in the “Quick start Guide using” the command
 “speedgoatmachineboot”.

I remain available if you something is not clear.

Best regards,

Davide
#+END_QUOTE
 
*** Installation instructions

To install the current Speedgoat Tools and Drivers library, please
proceed as described below. This driver library is compatible with
MathWorks software releases R2013a - R2009a. Starting with R2011a,
this driver distribution will automatically detect whether you have
MATLAB 64-bit or MATLAB 32-bit installed, and will install the
respective software.

In addition the below described steps please do also ensure to have
the correct xPC Target kernel version installed on your target machine
as further described in the Quick Start Guide. To transfer the kernel,
please use the provided Speedgoat USB memory device, and command
“speedgoatmachineboot”.

-------------------------------------------------

www.speedgoat.ch/downloads/docs/QuickStartGuide.pdf

www.speedgoat.ch/downloads/docs/TargetMachineUsersManual.pdf

------------------------------------------------- 

1. Download the library from the link: www.speedgoat.ch/downloads/sglib/speedgoat_7.zip  
2. Extract zipped files to a temporary folder, e.g. C:\\temp\\
3. Start MATLAB (in case MATLAB is already open, close and restart it)
4. Using MATLAB navigate to the unzipped folder, e.g. C:\\temp\\speedgoat_7\\
5. Run speedgoat_setup to start the installation
6. Proceed as instructed
7. Restart MATLAB again. Speedgoat Drivers and Tools will then be ready to use

*** Note for Windows 7 and Windows Vista users

Configure MATLAB to always run as administrator (right click the
MATLAB shortcut on your desktop, taskbar, or start menu, left click on
\"Properties\", navigate to \"Compatibility\", check box \"Run this program
as an administrator\", and click OK to save changes.

*** Compiler

Please ensure to have a compatible compiler installed. A list of all
supported compilers is available at
www.mathworks.com/support/compilers.

MATLAB R2012a requires Microsoft Windows SDK 7.1 with .NET Framework 4.0.

*** MATLAB 64-bit users

MATLAB 64-bit no longer includes a MEX compiler (Lcc Compiler). Users
of the Microsoft Windows SDK 7.1 therefore need to set the Windows SDK
as MEX Compiler manually by executing the following setup at the
MATLAB command prompt once: mex -setup.

Visual C++ 2010 compiler is a component of the SDK. By default is path
is: C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\

To confirm and configure compiler settings using the MATLAB command
prompt proceed as follows:

Type getxpcenv

Set the correct compiler path:
setxpcenv('CompilerPath',' C:\\Program Files (x86)\\Microsoft Visual Studio 10.0')
 
*** Upgrading from Microsoft Visual C++ 2010 Service Pack 1 to Microsoft Windows SDK 7.1: Installation process

New users of the Microsoft Windows SDK 7.1 upgrading from the
Microsoft Visual C++ 2010 Service Pack 1 might experience error
messages during installation. To avoid please upgrade using the below
described process.

1. In case you installed the Windows SDK already, please uninstall it again

2. Install the Windows SDK without Visual C++ Compilers.

3. Download and install the “Microsoft Visual C++ 2010 Service Pack 1
   Compiler Update for the Windows SDK 7.1” patch available at
   http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=4422

*** xPC Target kernel transfer

The xPC Target kernel version installed on the main drive of your
target machine needs to be equal to the xPC Target version installed
on your host PC. Therefore in case you are using a different release
of MathWorks software on your host you will need to transfer the
kernel using the “speegoatmachineboot” tool and the provided USB
memory devices as explained in the User’s Manual of your target
machine.

** 出现的问题

*** 安装 Windows SDK 7.1 失败

#+BEGIN_Quote 
Installation of the \"Microsoft Windows SDKfor Windows 7\" product has
reported the following error: Please refer to
Samples\\Setup\\HTML\\ConfigDetails.htm document for further information.
#+END_Quote


参考 [[http://support.microsoft.com/kb/2717426][Microsoft Support]]

To resolve this issue, you must uninstall all versions of the Visual
C++ 2010 Redistributable before installing the Windows 7 SDK. You may
have one or more of the following products installed:

  - Microsoft Visual C++ 2010 x86 Redistributable
  - Microsoft Visual C++ 2010 x64 Redistributable

After uninstalling the Microsoft Visual C++ 2010 Redistributable
products, you may install the Windows 7 SDK. After installing the
Windows 7 SDK, you may then reinstall the newer version of the Visual
C++ 2010 Redistributable products, in order to restore the Visual C++
2010 Redistributable products to their original state.

*** 配置 MATLAB & xPC
   
1. Run MATLAB as administrator
2. Set mex compiler by =mex -setup=
3. Set xpc compiler by =xpcsetCC -setup=
4. Set target kernel by =rtwintgt -setup=

*** 安装 speedgoat driver

1. Download the latest driver
2. Go to the driver folder
3. Run =speedgoat_setup=
4. Restart MATLAB

*** 配置 target machine
   
**** Run =xpcexplr= on 32-bit MATLAB to set target machine

Note: you will get error on 64-bit MATLAB

| IP address                   |     192.168.7.1 |
| TCP/IP target port           |           22222 |
| LAN subnet  mask    address: |   255.255.255.0 |
| TCP/IP gateway address       | 255.255.255.255 |
| TCP/IP target driver         |          I8254x |
| Multicore CPU support        |          enable |
| Graphic mode                 |          enable |

**** Run the commander tools on 64-bit MATLAB to set target machine

参考: MATLAB hep system \"xPC Target\"---\"User's Guide\"---\"Configuring
Environment From the MATLAB Command Line\"

#+BEGIN_SRC matlab  -n
tgs=xpctarget.targets;
tgs.makeDefault('TargetPC1');
env=tgs.Item('TargetPC1');
env.HostTargetComm='TcpIp';
env.TcpIpTargetAddress='192.168.7.1';
env.TcpIpTargetPort='22222';
env.TcpIpSubNetMask='255.255.255.0';
env.TcpIpGateway='255.255.255.255';
env.TcpIpTargetDriver='I8254x';
env.SecondaryIDE='on';
env.MulticoreSupport='on';
#+END_SRC

**** Make a boot disk on the host PC

Run =speedgoatmachineboot('X:')=
       
**** Transfer the kernel and make a boot disk

1. Insert the boot disk to an USB port of the target machine
2. Restart the target machine to load the new kernel
3. Check the display information of the target machine
4. For the new target machine (1615), you have to disconnect the USB
   keyboard when it boots up, otherwise it will fail (strange). You
   can reconnect the keyboard after it boots up.

*** 配置 host PC

1. Connect the host and the target via a Ethernet cable. Make sure
   that the cable inserts to the correct \"Host Link\" port.
2. Set IP address (TCP/IPV4) of the host
   - IP address: 192.168.7.2
   - Subnet mask: 255.255.255.0

*** 测试 host-target 通讯连接

1. =xpctargetping= success
2. =xpctest= success
3. Speedgoat full system test (run demos)

** 新的问题:SN1615无法启动 <2014-03-05 Wed>

两台机器中新的一台SN1615(另一台是SN1273)无法启动,先以为是BIOS的设置
问题,就发了封信去Speedgoat公司问。他们发了个BIOS设置截图过来,设置后
还是不行。

突然发现把键盘拔掉就成功启动了,启动后插上键盘也能用。真奇怪。不过问题
总算搞定了。

** Upgrade MATLAB to R2014a <2014-03-10 Mon>

MATLAB makes a lot of improvement in xPC development in this release
(Today!). We will use this version as the main development tool.

Changes I found as far.

- xPC changed to Real-Time Windows Target+Simulink Real-Time
- xPC target machine kernel changed
- Microsoft Visual Studio 2012 provides better support than 2010
"
content-html
"<p>
Cochlear 公司提供的模块只能在 MATLAB 2012a 及以下的版本运行。这带来不少的麻烦。需要完成配置
</p>

<ul class=\"org-ul\">
<li>软件环境:
<ol class=\"org-ol\">
<li>Windows 7 64-bit
</li>
<li>MATLAB 2012a 64-bit <sup><a id=\"fnr.1\" name=\"fnr.1\" class=\"footref\" href=\"#fn.1\">1</a></sup>
</li>
<li>Windows SDK 7.1, or Visual Studio 10.0 Professional with SP1
</li>
<li>Speedgoat driver 7
</li>
</ol>
</li>
<li>硬件环境:
<ol class=\"org-ol\">
<li>Desktop PC
</li>
<li>Speedgoat target machine
<ul class=\"org-ul\">
<li>1615 (new)
</li>
<li>1273 (old)
</li>
</ul>
</li>
</ol>
</li>
</ul>

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">出现的问题</h2>
<div class=\"outline-text-2\" id=\"text-1\">
</div><div id=\"outline-container-sec-1-1\" class=\"outline-3\">
<h3 id=\"sec-1-1\">安装 Windows SDK 7.1 失败</h3>
<div class=\"outline-text-3\" id=\"text-1-1\">
<blockquote>
<p>
Installation of the \"Microsoft Windows SDKfor Windows 7\" product has
reported the following error: Please refer to
Samples\\Setup\\HTML\\ConfigDetails.htm document for further information.
</p>
</blockquote>


<p>
参考 <a href=\"http://support.microsoft.com/kb/2717426\">Microsoft Support</a>
</p>

<p>
To resolve this issue, you must uninstall all versions of the Visual
C++ 2010 Redistributable before installing the Windows 7 SDK. You may
have one or more of the following products installed:
</p>

<ul class=\"org-ul\">
<li>Microsoft Visual C++ 2010 x86 Redistributable
</li>
<li>Microsoft Visual C++ 2010 x64 Redistributable
</li>
</ul>

<p>
After uninstalling the Microsoft Visual C++ 2010 Redistributable
products, you may install the Windows 7 SDK. After installing the
Windows 7 SDK, you may then reinstall the newer version of the Visual
C++ 2010 Redistributable products, in order to restore the Visual C++
2010 Redistributable products to their original state.
</p>
</div>
</div>

<div id=\"outline-container-sec-1-2\" class=\"outline-3\">
<h3 id=\"sec-1-2\">配置 MATLAB &amp; xPC</h3>
<div class=\"outline-text-3\" id=\"text-1-2\">
<ol class=\"org-ol\">
<li>Run MATLAB as administrator
</li>
<li>Set mex compiler by <code>mex -setup</code>
</li>
<li>Set xpc compiler by <code>xpcsetCC -setup</code>
</li>
<li>Set target kernel by <code>rtwintgt -setup</code>
</li>
</ol>
</div>
</div>

<div id=\"outline-container-sec-1-3\" class=\"outline-3\">
<h3 id=\"sec-1-3\">安装 speedgoat driver</h3>
<div class=\"outline-text-3\" id=\"text-1-3\">
<ol class=\"org-ol\">
<li>Download the latest driver
</li>
<li>Go to the driver folder
</li>
<li>Run <code>speedgoat_setup</code>
</li>
<li>Restart MATLAB
</li>
</ol>
</div>
</div>

<div id=\"outline-container-sec-1-4\" class=\"outline-3\">
<h3 id=\"sec-1-4\">配置 target machine</h3>
<div class=\"outline-text-3\" id=\"text-1-4\">
</div><div id=\"outline-container-sec-1-4-1\" class=\"outline-4\">
<h4 id=\"sec-1-4-1\">Run <code>xpcexplr</code> on 32-bit MATLAB to set target machine</h4>
<div class=\"outline-text-4\" id=\"text-1-4-1\">
<p>
Note: you will get error on 64-bit MATLAB
</p>

<table border=\"2\" cellspacing=\"0\" cellpadding=\"6\" rules=\"groups\" frame=\"hsides\">


<colgroup>
<col  class=\"left\" />

<col  class=\"right\" />
</colgroup>
<tbody>
<tr>
<td class=\"left\">IP address</td>
<td class=\"right\">192.168.7.1</td>
</tr>

<tr>
<td class=\"left\">TCP/IP target port</td>
<td class=\"right\">22222</td>
</tr>

<tr>
<td class=\"left\">LAN subnet  mask    address:</td>
<td class=\"right\">255.255.255.0</td>
</tr>

<tr>
<td class=\"left\">TCP/IP gateway address</td>
<td class=\"right\">255.255.255.255</td>
</tr>

<tr>
<td class=\"left\">TCP/IP target driver</td>
<td class=\"right\">I8254x</td>
</tr>

<tr>
<td class=\"left\">Multicore CPU support</td>
<td class=\"right\">enable</td>
</tr>

<tr>
<td class=\"left\">Graphic mode</td>
<td class=\"right\">enable</td>
</tr>
</tbody>
</table>
</div>
</div>

<div id=\"outline-container-sec-1-4-2\" class=\"outline-4\">
<h4 id=\"sec-1-4-2\">Run the commander tools on 64-bit MATLAB to set target machine</h4>
<div class=\"outline-text-4\" id=\"text-1-4-2\">
<p>
参考: MATLAB hep system \"xPC Target\"&#x2014;\"User's Guide\"&#x2014;\"Configuring
Environment From the MATLAB Command Line\"
</p>

<div class=\"org-src-container\">

<pre class=\"src src-matlab\"><span class=\"linenr\"> 1: </span>tgs=xpctarget.targets;
<span class=\"linenr\"> 2: </span>tgs.makeDefault(<span style=\"color: #cc9393;\">'TargetPC1'</span>);
<span class=\"linenr\"> 3: </span>env=tgs.Item(<span style=\"color: #cc9393;\">'TargetPC1'</span>);
<span class=\"linenr\"> 4: </span>env.HostTargetComm=<span style=\"color: #cc9393;\">'TcpIp'</span>;
<span class=\"linenr\"> 5: </span>env.TcpIpTargetAddress=<span style=\"color: #cc9393;\">'192.168.7.1'</span>;
<span class=\"linenr\"> 6: </span>env.TcpIpTargetPort=<span style=\"color: #cc9393;\">'22222'</span>;
<span class=\"linenr\"> 7: </span>env.TcpIpSubNetMask=<span style=\"color: #cc9393;\">'255.255.255.0'</span>;
<span class=\"linenr\"> 8: </span>env.TcpIpGateway=<span style=\"color: #cc9393;\">'255.255.255.255'</span>;
<span class=\"linenr\"> 9: </span>env.TcpIpTargetDriver=<span style=\"color: #cc9393;\">'I8254x'</span>;
<span class=\"linenr\">10: </span>env.SecondaryIDE=<span style=\"color: #cc9393;\">'on'</span>;
<span class=\"linenr\">11: </span>env.MulticoreSupport=<span style=\"color: #cc9393;\">'on'</span>;
</pre>
</div>
</div>
</div>

<div id=\"outline-container-sec-1-4-3\" class=\"outline-4\">
<h4 id=\"sec-1-4-3\">Make a boot disk on the host PC</h4>
<div class=\"outline-text-4\" id=\"text-1-4-3\">
<p>
Run <code>speedgoatmachineboot('X:')</code>
</p>
</div>
</div>

<div id=\"outline-container-sec-1-4-4\" class=\"outline-4\">
<h4 id=\"sec-1-4-4\">Transfer the kernel and make a boot disk</h4>
<div class=\"outline-text-4\" id=\"text-1-4-4\">
<ol class=\"org-ol\">
<li>Insert the boot disk to an USB port of the target machine
</li>
<li>Restart the target machine to load the new kernel
</li>
<li>Check the display information of the target machine
</li>
<li>For the new target machine (1615), you have to disconnect the USB
keyboard when it boots up, otherwise it will fail (strange). You
can reconnect the keyboard after it boots up.
</li>
</ol>
</div>
</div>
</div>

<div id=\"outline-container-sec-1-5\" class=\"outline-3\">
<h3 id=\"sec-1-5\">配置 host PC</h3>
<div class=\"outline-text-3\" id=\"text-1-5\">
<ol class=\"org-ol\">
<li>Connect the host and the target via a Ethernet cable. Make sure
that the cable inserts to the correct \"Host Link\" port.
</li>
<li>Set IP address (TCP/IPV4) of the host
<ul class=\"org-ul\">
<li>IP address: 192.168.7.2
</li>
<li>Subnet mask: 255.255.255.0
</li>
</ul>
</li>
</ol>
</div>
</div>

<div id=\"outline-container-sec-1-6\" class=\"outline-3\">
<h3 id=\"sec-1-6\">测试 host-target 通讯连接</h3>
<div class=\"outline-text-3\" id=\"text-1-6\">
<ol class=\"org-ol\">
<li><code>xpctargetping</code> success
</li>
<li><code>xpctest</code> success
</li>
<li>Speedgoat full system test (run demos)
</li>
</ol>
</div>
</div>
</div>

<div id=\"outline-container-sec-2\" class=\"outline-2\">
<h2 id=\"sec-2\">新的问题:SN1615无法启动 <span class=\"timestamp-wrapper\"><span class=\"timestamp\">&lt;2014-03-05 Wed&gt;</span></span></h2>
<div class=\"outline-text-2\" id=\"text-2\">
<p>
两台机器中新的一台SN1615(另一台是SN1273)无法启动,先以为是BIOS的设置问题,就发了封信去Speedgoat公司问。他们发了个BIOS设置截图过来,设置后还是不行。
</p>

<p>
突然发现把键盘拔掉就成功启动了,启动后插上键盘也能用。真奇怪。不过问题总算搞定了。
</p>
</div>
</div>

<div id=\"outline-container-sec-3\" class=\"outline-2\">
<h2 id=\"sec-3\">Upgrade MATLAB to R2014a <span class=\"timestamp-wrapper\"><span class=\"timestamp\">&lt;2014-03-10 Mon&gt;</span></span></h2>
<div class=\"outline-text-2\" id=\"text-3\">
<p>
MATLAB makes a lot of improvement in xPC development in this release
(Today!). We will use this version as the main development tool.
</p>

<p>
Changes I found as far.
</p>

<ul class=\"org-ul\">
<li>xPC changed to Real-Time Windows Target+Simulink Real-Time
</li>
<li>xPC target machine kernel changed
</li>
<li>Microsoft Visual Studio 2012 provides better support than 2010
</li>
</ul>
</div>
</div>
<div id=\"footnotes\">
<h2 class=\"footnotes\">Footnotes: </h2>
<div id=\"text-footnotes\">

<div class=\"footdef\"><sup><a id=\"fn.1\" name=\"fn.1\" class=\"footnum\" href=\"#fnr.1\">1</a></sup> <p>这里必须说一下,如果 64-bit 的 Windows7
     安装了 32-bit 的 MATLAB,将无法 使用 xPC 连接 target machine。</p></div>


</div>
</div>"

固定页面

标签集合

导出博文信息 标签集合
属性
id
0
title
"标签集合"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_post-by-tags.html"
filepath
nil
filename
"tags"
htmlfile
"tags.html"
path-to-root
"."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil

"
content-html
"
"

网站调试

导出博文信息 网站调试
属性
id
1
title
"网站调试"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"debug.html"
filepath
nil
filename
"debug"
htmlfile
"debug.html"
path-to-root
"."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil

"
content-html
"
"

博客日志

导出博文信息 博客日志
属性
id
2
title
"博客日志"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_static.html"
filepath
nil
filename
"changelog"
htmlfile
"changelog.html"
path-to-root
"."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


- <2013-10-03 Thu> 开始使用 o-blog 写博客
- ([[file:./debug.html][页面调试]])
"
content-html
"<ul class=\"org-ul\">
<li><span class=\"timestamp-wrapper\"><span class=\"timestamp\">&lt;2013-10-03 Thu&gt;</span></span> 开始使用 o-blog 写博客
</li>
<li>(<a href=\"./debug.html\">页面调试</a>)
</li>
</ul>
"

主页:我的工作日志

导出博文信息 主页:我的工作日志
属性
id
3
title
"主页:我的工作日志"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Static" "static"]
tags
nil
template
"blog_static_no_title.html"
filepath
nil
filename
"index"
htmlfile
"index.html"
path-to-root
"."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


#+BEGIN_HTML
<div class=\"row \"><div class=\"span10 \">
#+END_HTML


#+BEGIN_HTML
<div class=\"hero-unit\">

#+END_HTML

#+HTML: <h1>我的工作日志</h1>



#+BEGIN_HTML
</div>

#+END_HTML


#+BEGIN_HTML
</div><div class=\"span5 \">
#+END_HTML


#+HTML: <div class=\"hero-unit\" style=\"font-size: 200%;\">

/icon-list icon-black/ [[file:./archives.html][归档]]

/icon-tags icon-black/ [[file:./tags/index.html][标签]]

/icon-book icon-black/ [[file:./static/articles.html][笔记]]

#+HTML: </div>

#+BEGIN_HTML
</div><div class=\"span5 \">
#+END_HTML

#+HTML: <div class=\"hero-unit style=\"font-size: 200%;\">
#+HTML: <h2>自勉</h2>
#+begin_example
而今修行犹未晚,

福慧具足固基根。

古寺数峰平处合,

钟声一水众溪分。

    ——2013年7月 武汉归元寺
#+end_example
#+HTML: </div>

#+BEGIN_HTML
</div></div>
#+END_HTML

"
content-html
"<div class=\"row \"><div class=\"span10 \">


<div class=\"hero-unit\">

<h1>我的工作日志</h1>



</div>


</div><div class=\"span5 \">


<div class=\"hero-unit\" style=\"font-size: 200%;\">

<p>
<i>icon-list icon-black</i> <a href=\"./archives.html\">归档</a>
</p>

<p>
<i>icon-tags icon-black</i> <a href=\"./tags/index.html\">标签</a>
</p>

<p>
<i>icon-book icon-black</i> <a href=\"./static/articles.html\">笔记</a>
</p>

</div>

</div><div class=\"span5 \">

<div class=\"hero-unit style=\"font-size: 200%;\">
<h2>自勉</h2>
<pre class=\"example\">
而今修行犹未晚,

福慧具足固基根。

古寺数峰平处合,

钟声一水众溪分。

    ——2013年7月 武汉归元寺
</pre>
</div>

</div></div>
"

博主资料

导出博文信息 博主资料
属性
id
4
title
"博主资料"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Static" "static"]
tags
nil
template
"blog_static.html"
filepath
"static/"
filename
"drxyang"
htmlfile
"static/drxyang.html"
path-to-root
".."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** 建设中……
"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">建设中……</h2>
</div>
"

收藏夹

导出博文信息 收藏夹
属性
id
5
title
"收藏夹"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Static" "static"]
tags
nil
template
"blog_static.html"
filepath
"static/"
filename
"favorite"
htmlfile
"static/favorite.html"
path-to-root
".."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


** 经常访问的网站
"
content-html
"

<div id=\"outline-container-sec-1\" class=\"outline-2\">
<h2 id=\"sec-1\">经常访问的网站</h2>
</div>
"

笔记

导出博文信息 笔记
属性
id
6
title
"笔记"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Static" "static"]
tags
nil
template
"blog_static.html"
filepath
"static/"
filename
"articles"
htmlfile
"static/articles.html"
path-to-root
".."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


这些都是独立成章的笔记,分别讲述单独的主题。
"
content-html
"<p>
这些都是独立成章的笔记,分别讲述单独的主题。
</p>
"

Copyright

导出博文信息 Copyright
属性
id
0
title
"Copyright"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_post.html"
filepath
"blog-details/2014/08"
filename
"copyright"
htmlfile
"blog-details/2014/08/10_copyright.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


版权所有 © 2008-2012 [[mailto:etimecowboy@163.com][etimecowboy]]. 遵循[[http://creativecommons.org/licenses/by-nc-sa/2.5/cn/][Creative Commons
Attribution-Noncommercial-Share Alike]] 中文许可发布.
"
content-html
"<p>
版权所有 © 2008-2012 <a href=\"mailto:etimecowboy@163.com\">etimecowboy</a>. 遵循<a href=\"http://creativecommons.org/licenses/by-nc-sa/2.5/cn/\">Creative Commons
Attribution-Noncommercial-Share Alike</a> 中文许可发布.
</p>
"

About

导出博文信息 About
属性
id
1
title
"About"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_post.html"
filepath
"blog-details/2014/08"
filename
"about"
htmlfile
"blog-details/2014/08/10_about.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


这个博客是我读博期间的工作日志
"
content-html
"<p>
这个博客是我读博期间的工作日志
</p>
"

Navigation

导出博文信息 Navigation
属性
id
2
title
"Navigation"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_post.html"
filepath
"blog-details/2014/08"
filename
"navigation"
htmlfile
"blog-details/2014/08/10_navigation.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


- [[file:../../../attic/etimecowboy.html][/icon-user icon-white/ 博主其人]]

- [[file:#][/icon-file icon-white/ 最新博文]]
  - [[file:Lisp error in nil: (void-variable "%s/%s")][Lisp error in nil: (void-variable "Blog")]]
  - [[file:Lisp error in nil: (void-variable "%s/%s")][Lisp error in nil: (void-variable "Blog")]]
  - [[file:Lisp error in nil: (void-variable "%s/%s")][Lisp error in nil: (void-variable "Blog")]]
  - [[file:Lisp error in nil: (void-variable "%s/%s")][Lisp error in nil: (void-variable "Blog")]]
  - [[file:Lisp error in nil: (void-variable "%s/%s")][Lisp error in nil: (void-variable "Blog")]]

- [[file:../../../static/favorite.html][/icon-cog icon-white/ 网址收藏]]

- [[file:../../../tags/index.html][/icon-tags icon-white/ 标签集合]]

- [[file:../../../archives.html][/icon-list icon-white/ 博文归档]]

- [[file:../../../articles/index.html][/icon-book icon-white/ 独立文章]]

- [[file:../../../changelog.html][/icon-pencil icon-white/ 博客日志]]

- [[file:../../../roadmap.html][/icon-tasks icon-white/ 博客计划]]

- [[file:../../../index.xml][/icon-rss icon-white/ RSS推送]]
"
content-html
"<ul class=\"org-ul\">
<li><a href=\"../../../attic/etimecowboy.html\"><i>icon-user icon-white</i> 博主其人</a>
</li>

<li><a href=\"#\"><i>icon-file icon-white</i> 最新博文</a>
<ul class=\"org-ul\">
<li><a href=\"Lisp error in nil: (void-variable "%s/%s")\">Lisp error in nil: (void-variable "Blog")</a>
</li>
<li><a href=\"Lisp error in nil: (void-variable "%s/%s")\">Lisp error in nil: (void-variable "Blog")</a>
</li>
<li><a href=\"Lisp error in nil: (void-variable "%s/%s")\">Lisp error in nil: (void-variable "Blog")</a>
</li>
<li><a href=\"Lisp error in nil: (void-variable "%s/%s")\">Lisp error in nil: (void-variable "Blog")</a>
</li>
<li><a href=\"Lisp error in nil: (void-variable "%s/%s")\">Lisp error in nil: (void-variable "Blog")</a>
</li>
</ul>
</li>

<li><a href=\"../../../static/favorite.html\"><i>icon-cog icon-white</i> 网址收藏</a>
</li>

<li><a href=\"../../../tags/index.html\"><i>icon-tags icon-white</i> 标签集合</a>
</li>

<li><a href=\"../../../archives.html\"><i>icon-list icon-white</i> 博文归档</a>
</li>

<li><a href=\"../../../articles/index.html\"><i>icon-book icon-white</i> 独立文章</a>
</li>

<li><a href=\"../../../changelog.html\"><i>icon-pencil icon-white</i> 博客日志</a>
</li>

<li><a href=\"../../../roadmap.html\"><i>icon-tasks icon-white</i> 博客计划</a>
</li>

<li><a href=\"../../../index.xml\"><i>icon-rss icon-white</i> RSS推送</a>
</li>
</ul>
"

Navigation Footer

导出博文信息 Navigation Footer
属性
id
3
title
"Navigation Footer"
timespamp
(21479 53056)
year
2014
month
8
day
10
category
[cl-struct-ob:category "Blog details" "blog-details"]
tags
nil
template
"blog_post.html"
filepath
"blog-details/2014/08"
filename
"navigation-footer"
htmlfile
"blog-details/2014/08/10_navigation-footer.html"
path-to-root
"../../.."
sitemap
nil
content
"#+OPTIONS: H:7 num:nil  toc:nil d:nil todo:nil <:nil pri:nil tags:nil


- [[file:../../../index.html][/icon-home icon-white/ 首页]]

- [[file:../../../tags/index.html][/icon-tags icon-white/ 标签]]

- [[file:../../../archives.html][/icon-list icon-white/ 博文归档]]

- [[file:../../../notes/index.html][/icon-book icon-white/ 独立文章]]

- [[file:../../../index.xml][/icon-rss icon-white/ RSS]]
"
content-html
"<ul class=\"org-ul\">
<li><a href=\"../../../index.html\"><i>icon-home icon-white</i> 首页</a>
</li>

<li><a href=\"../../../tags/index.html\"><i>icon-tags icon-white</i> 标签</a>
</li>

<li><a href=\"../../../archives.html\"><i>icon-list icon-white</i> 博文归档</a>
</li>

<li><a href=\"../../../notes/index.html\"><i>icon-book icon-white</i> 独立文章</a>
</li>

<li><a href=\"../../../index.xml\"><i>icon-rss icon-white</i> RSS</a>
</li>
</ul>
"

标签

AIM

导出标签信息 "AIM"
属性
name
"AIM"
safe
"aim"
count
1
size
80.0

auditory

导出标签信息 "auditory"
属性
name
"auditory"
safe
"auditory"
count
1
size
80.0

book

导出标签信息 "book"
属性
name
"book"
safe
"book"
count
1
size
80.0

china

导出标签信息 "china"
属性
name
"china"
safe
"china"
count
2
size
220.0

dsp

导出标签信息 "dsp"
属性
name
"dsp"
safe
"dsp"
count
1
size
80.0

family

导出标签信息 "family"
属性
name
"family"
safe
"family"
count
1
size
80.0

hearing aid

导出标签信息 "hearing aid"
属性
name
"hearing aid"
safe
"hearing-aid"
count
1
size
80.0

idea

导出标签信息 "idea"
属性
name
"idea"
safe
"idea"
count
1
size
80.0

industry

导出标签信息 "industry"
属性
name
"industry"
safe
"industry"
count
2
size
220.0

matlab

导出标签信息 "matlab"
属性
name
"matlab"
safe
"matlab"
count
1
size
80.0

news

导出标签信息 "news"
属性
name
"news"
safe
"news"
count
2
size
220.0

org

导出标签信息 "org"
属性
name
"org"
safe
"org"
count
1
size
80.0

read

导出标签信息 "read"
属性
name
"read"
safe
"read"
count
1
size
80.0

review

导出标签信息 "review"
属性
name
"review"
safe
"review"
count
2
size
220.0

software

导出标签信息 "software"
属性
name
"software"
safe
"software"
count
1
size
80.0

speech

导出标签信息 "speech"
属性
name
"speech"
safe
"speech"
count
1
size
80.0

speedgoat

导出标签信息 "speedgoat"
属性
name
"speedgoat"
safe
"speedgoat"
count
1
size
80.0

summary

导出标签信息 "summary"
属性
name
"summary"
safe
"summary"
count
2
size
220.0

tips

导出标签信息 "tips"
属性
name
"tips"
safe
"tips"
count
1
size
80.0

xpc

导出标签信息 "xpc"
属性
name
"xpc"
safe
"xpc"
count
1
size
80.0

zz

导出标签信息 "zz"
属性
name
"zz"
safe
"zz"
count
1
size
80.0