Edited, memorised or added to reading queue

on 16-Feb-2017 (Thu)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

#daniel-goleman #emotional-brain #emotional-iq #how-the-brain-grew #what-are-emotions-for #when-passions-overwhelm-reasons
Because so many of the brain's higher centers sprouted from or extended the scope of the limbic area, the emotional brain plays a crucial role in neural architecture.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on


Parent (intermediate) annotation

Open it
more complex social world than our own.12 But these higher centers do not govern all of emotional life; in crucial matters of the heart—and most especially in emotional emergencies—they can be said to defer to the limbic system. <span>Because so many of the brain's higher centers sprouted from or extended the scope of the limbic area, the emotional brain plays a crucial role in neural architecture. As the root from which the newer brain grew, the emotional areas are intertwined via myriad connecting circuits to all parts of the neocortex. This gives the emotional centers immense p

Original toplevel document (pdf)

cannot see any pdfs




#matlab #programming
any(x) returns the scalar 1 (true) if any element of x is non-zero (true)
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
all(x) returns the scalar 1 if all the elements of x are non-zero
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
exist(’a’) returns 1 if a is a workspace variable. For other possible return values see help. Note that a must be enclosed in apostrophes
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
find(x) returns a vector containing the subscripts of the non-zero (true) ele- ments of x
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
a = a( find(a) ) removes all the zero elements from a!
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
Another use of find is in finding the subscripts of the largest (or smallest) elements in a vector, when there is more than one.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
isempty(x) returns 1 if x is an empty array and 0 otherwise. An empty array has a size of 0-by-0
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
isinf(x) returns 1s for the elements of x which are +Inf or −Inf, and 0s otherwise
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
isnan(x) returns 1s where the elements of x are NaN and 0s otherwise. This function may be used to remove NaNs from a set of data.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




#matlab #programming
if a ~= b % wrong wrong wrong!!! statement end However this will not work, since statement will only execute if each of the cor- responding elements of a and b differ. This is where any comes in: if any(a ~= b) % right right right!!! statement end
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs