Deep Learning Toolbox Getting Started Guide MATLAB The Mathworks instant download
Deep Learning Toolbox Getting Started Guide MATLAB The Mathworks instant download
https://ebookmeta.com/product/deep-learning-toolbox-getting-
started-guide-matlab-the-mathworks/
https://ebookmeta.com/product/matlab-symbolic-math-toolbox-user-
s-guide-2023-the-mathworks/
https://ebookmeta.com/product/audio-toolbox-user-s-guide-matlab-
simulink-1st-edition-mathworks/
https://ebookmeta.com/product/matlab-mathematics-1st-edition-
mathworks/
https://ebookmeta.com/product/guidebook-for-the-young-
officer-2nd-edition-ltc-frank-j-caravella/
5 000 Awesome Facts about Everything 2 2nd Edition
National Geographic Society
https://ebookmeta.com/product/5-000-awesome-facts-about-
everything-2-2nd-edition-national-geographic-society/
https://ebookmeta.com/product/shakespeare-investigate-the-bard-s-
influence-on-today-s-world-1st-edition-andi-diehn-samuel-
carbaugh/
https://ebookmeta.com/product/survey-of-operating-systems-7th-
edition-jane-holcombe/
https://ebookmeta.com/product/learning-functional-programming-
managing-code-complexity-by-thinking-functionally-1st-edition-
jack-widman/
https://ebookmeta.com/product/doctor-satan-a-despicable-true-
story-of-hope-exploitation-greed-and-murder-ryan-green-s-true-
crime-1st-edition-ryan-green/
Calling Doctor Love Little Rock Medical 1 1st Edition
Rochelle Summers
https://ebookmeta.com/product/calling-doctor-love-little-rock-
medical-1-1st-edition-rochelle-summers/
Deep Learning Toolbox™
Getting Started Guide
R2021b
How to Contact MathWorks
Phone: 508-647-7000
Acknowledgments
Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . viii
Getting Started
1
Deep Learning Toolbox Product Description . . . . . . . . . . . . . . . . . . . . . . . . 1-2
v
Cluster Data with a Self-Organizing Map . . . . . . . . . . . . . . . . . . . . . . . . . 1-75
Defining a Problem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1-75
Cluster Data Using the Neural Net Clustering App . . . . . . . . . . . . . . . . . 1-75
Cluster Data Using Command-Line Functions . . . . . . . . . . . . . . . . . . . . . 1-81
vi Contents
Acknowledgments
vii
Acknowledgments
Acknowledgments
The authors would like to thank the following people:
Joe Hicklin of MathWorks for getting Howard into neural network research years ago at the
University of Idaho, for encouraging Howard and Mark to write the toolbox, for providing crucial help
in getting the first toolbox Version 1.0 out the door, for continuing to help with the toolbox in many
ways, and for being such a good friend.
Mary Ann Freeman of MathWorks for general support and for her leadership of a great team of
people we enjoy working with.
Rakesh Kumar of MathWorks for cheerfully providing technical and practical help, encouragement,
ideas and always going the extra mile for us.
Orlando De Jesús of Oklahoma State University for his excellent work in developing and
programming the dynamic training algorithms described in “Time Series and Dynamic Systems” and
in programming the neural network controllers described in “Neural Network Control Systems”.
Martin T. Hagan, Howard B. Demuth, and Mark Hudson Beale for permission to include various
problems, examples, and other material from Neural Network Design, January, 1996.
viii
1
Getting Started
Deep Learning Toolbox provides a framework for designing and implementing deep neural networks
with algorithms, pretrained models, and apps. You can use convolutional neural networks (ConvNets,
CNNs) and long short-term memory (LSTM) networks to perform classification and regression on
image, time-series, and text data. You can build network architectures such as generative adversarial
networks (GANs) and Siamese networks using automatic differentiation, custom training loops, and
shared weights. With the Deep Network Designer app, you can design, analyze, and train networks
graphically. The Experiment Manager app helps you manage multiple deep learning experiments,
keep track of training parameters, analyze results, and compare code from different experiments. You
can visualize layer activations and graphically monitor training progress.
You can exchange models with TensorFlow™ and PyTorch through the ONNX™ format and import
models from TensorFlow-Keras and Caffe. The toolbox supports transfer learning with DarkNet-53,
ResNet-50, NASNet, SqueezeNet and many other pretrained models.
You can speed up training on a single- or multiple-GPU workstation (with Parallel Computing
Toolbox™), or scale up to clusters and clouds, including NVIDIA® GPU Cloud and Amazon EC2® GPU
instances (with MATLAB® Parallel Server™).
1-2
Get Started with Deep Network Designer
unzip('MerchData.zip');
deepNetworkDesigner
Load a pretrained GoogLeNet network by selecting it from the Deep Network Designer Start Page. If
you need to download the network, then click Install to open the Add-On Explorer.
Deep Network Designer displays a zoomed-out view of the whole network. Explore the network plot.
To zoom in with the mouse, use Ctrl+scroll wheel.
1-3
1 Getting Started
To load the data into Deep Network Designer, on the Data tab, click Import Data > Import Image
Data. The Import Image Data dialog box opens.
In the Data source list, select Folder. Click Browse and select the extracted MerchData folder.
The dialog box also allows you to split the validation data from within the app. Divide the data into
70% training data and 30% validation data.
Specify augmentation operations to perform on the training images. For this example, apply a random
reflection in the x-axis, a random rotation from the range [-90,90] degrees, and a random rescaling
from the range [1,2].
1-4
Get Started with Deep Network Designer
Using Deep Network Designer, you can visually inspect the distribution of the training and validation
data in the Data tab. You can see that, in this example, there are five classes in the data set. You can
also view random observations from each class.
1-5
1 Getting Started
Deep Network Designer resizes the images during training to match the network input size. To view
the network input size, in the Designer tab, click the imageInputLayer. This network has an input
size of 224-by-224.
To retrain a pretrained network to classify new images, replace the last learnable layer and the final
classification layer with new layers adapted to the new data set. In GoogLeNet, these layers have the
names 'loss3-classifier' and 'output', respectively.
1-6
Get Started with Deep Network Designer
In the Designer tab, drag a new fullyConnectedLayer from the Layer Library onto the canvas.
Set OutputSize to the number of classes in the new data, in this example, 5.
Edit learning rates to learn faster in the new layers than in the transferred layers. Set
WeightLearnRateFactor and BiasLearnRateFactor to 10. Delete the last fully connected layer
and connect your new layer instead.
Replace the output layer. Scroll to the end of the Layer Library and drag a new
classificationLayer onto the canvas. Delete the original output layer and connect your new
layer instead.
1-7
1 Getting Started
Check Network
Check your network by clicking Analyze. The network is ready for training if Deep Learning Network
Analyzer reports zero errors.
1-8
Get Started with Deep Network Designer
Train Network
To train the network with the default settings, on the Training tab, click Train.
If you want greater control over the training, click Training Options and choose the settings to train
with. The default training options are better suited for large data sets. For small data sets, use
smaller values for the mini-batch size and the validation frequency. For more information on selecting
training options, see trainingOptions.
1-9
1 Getting Started
To train the network with the specified training options, click Close and then click Train.
Deep Network Designer allows you to visualize and monitor the training progress. You can then edit
the training options and retrain the network, if required.
1-10
Get Started with Deep Network Designer
To export the results from training, on the Training tab, select Export > Export Trained Network
and Results. Deep Network Designer exports the trained network as the variable
trainedNetwork_1 and the training info as the variable trainInfoStruct_1.
You can also generate MATLAB code, which recreates the network and the training options used. On
the Training tab, select Export > Generate Code for Training.
I = imread("MerchDataTest.jpg");
[YPred,probs] = classify(trainedNetwork_1,I);
imshow(I)
label = YPred;
title(string(label) + ", " + num2str(100*max(probs),3) + "%");
1-11
1 Getting Started
For more information, including on other pretrained networks, see Deep Network Designer.
See Also
Deep Network Designer
More About
• “Create Simple Image Classification Network Using Deep Network Designer” on page 1-29
• “Build Networks with Deep Network Designer”
• “Deep Learning Tips and Tricks”
• “List of Deep Learning Layers”
1-12
Try Deep Learning in 10 Lines of MATLAB Code
1 Run these commands to get the downloads if needed, connect to the webcam, and get a
pretrained neural network.
If you need to install the webcam and alexnet add-ons, a message from each function appears
with a link to help you download the free add-ons using Add-On Explorer. Alternatively, see Deep
Learning Toolbox Model for AlexNet Network and MATLAB Support Package for USB Webcams.
After you install Deep Learning Toolbox Model for AlexNet Network, you can use it to classify
images. AlexNet is a pretrained convolutional neural network (CNN) that has been trained on
more than a million images and can classify images into 1000 object categories (for example,
keyboard, mouse, coffee mug, pencil, and many animals).
2 Run the following code to show and classify live images. Point the webcam at an object and the
neural network reports what class of object it thinks the webcam is showing. It will keep
classifying images until you press Ctrl+C. The code resizes the image for the network using
imresize.
while true
im = snapshot(camera); % Take a picture
image(im); % Show the picture
im = imresize(im,[227 227]); % Resize the picture for alexnet
label = classify(net,im); % Classify the picture
title(char(label)); % Show the class label
drawnow
end
In this example, the network correctly classifies a coffee mug. Experiment with objects in your
surroundings to see how accurate the network is.
1-13
1 Getting Started
To watch a video of this example, see Deep Learning in 11 Lines of MATLAB Code.
To learn how to extend this example and show the probability scores of classes, see “Classify
Webcam Images Using Deep Learning”.
For next steps in deep learning, you can use the pretrained network for other tasks. Solve new
classification problems on your image data with transfer learning or feature extraction. For
examples, see “Start Deep Learning Faster Using Transfer Learning” and “Train Classifiers Using
Features Extracted from Pretrained Networks”. To try other pretrained networks, see
“Pretrained Deep Neural Networks”.
See Also
trainNetwork | trainingOptions | alexnet
More About
• “Classify Webcam Images Using Deep Learning”
• “Classify Image Using Pretrained Network” on page 1-15
• “Get Started with Transfer Learning” on page 1-17
• “Transfer Learning with Deep Network Designer”
• “Create Simple Image Classification Network” on page 1-26
• “Create Simple Sequence Classification Network Using Deep Network Designer” on page 1-34
1-14
Classify Image Using Pretrained Network
GoogLeNet has been trained on over a million images and can classify images into 1000 object
categories (such as keyboard, coffee mug, pencil, and many animals). The network has learned rich
feature representations for a wide range of images. The network takes an image as input, and then
outputs a label for the object in the image together with the probabilities for each of the object
categories.
Load the pretrained GoogLeNet network. You can also choose to load a different pretrained network
for image classification. This step requires the Deep Learning Toolbox™ Model for GoogLeNet
Network support package. If you do not have the required support packages installed, then the
software provides a download link.
net = googlenet;
The image that you want to classify must have the same size as the input size of the network. For
GoogLeNet, the network input size is the InputSize property of the image input layer.
Read the image that you want to classify and resize it to the input size of the network. This resizing
slightly changes the aspect ratio of the image.
I = imread("peppers.png");
inputSize = net.Layers(1).InputSize;
I = imresize(I,inputSize(1:2));
label = classify(net,I);
figure
imshow(I)
title(string(label))
1-15
1 Getting Started
For a more detailed example showing how to also display the top predictions with their associated
probabilities, see “Classify Image Using GoogLeNet”.
For next steps in deep learning, you can use the pretrained network for other tasks. Solve new
classification problems on your image data with transfer learning or feature extraction. For examples,
see “Start Deep Learning Faster Using Transfer Learning” and “Train Classifiers Using Features
Extracted from Pretrained Networks”. To try other pretrained networks, see “Pretrained Deep Neural
Networks”.
References
1 Szegedy, Christian, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov,
Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. "Going deeper with convolutions."
In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 1-9. 2015.
2 BVLC GoogLeNet Model. https://github.com/BVLC/caffe/tree/master/models/bvlc_googlenet
See Also
googlenet | classify | Deep Network Designer
More About
• “Classify Image Using GoogLeNet”
• “Try Deep Learning in 10 Lines of MATLAB Code” on page 1-13
• “Get Started with Transfer Learning” on page 1-17
• “Create Simple Image Classification Network Using Deep Network Designer” on page 1-29
• “Transfer Learning with Deep Network Designer”
• “Create Simple Image Classification Network” on page 1-26
• “Create Simple Sequence Classification Network Using Deep Network Designer” on page 1-34
1-16
Get Started with Transfer Learning
Transfer learning is commonly used in deep learning applications. You can take a pretrained network
and use it as a starting point to learn a new task. Fine-tuning a network with transfer learning is
usually much faster and easier than training a network with randomly initialized weights from
scratch. You can quickly transfer learned features to a new task using a smaller number of training
images.
Extract Data
In the workspace, extract the MathWorks Merch data set. This is a small data set containing 75
images of MathWorks merchandise, belonging to five different classes (cap, cube, playing cards,
screwdriver, and torch).
unzip("MerchData.zip");
deepNetworkDesigner
Select SqueezeNet from the list of pretrained networks and click Open.
1-17
1 Getting Started
1-18
Get Started with Transfer Learning
Explore the network plot. To zoom in with the mouse, use Ctrl+scroll wheel. To pan, use the arrow
keys, or hold down the scroll wheel and drag the mouse. Select a layer to view its properties.
Deselect all layers to view the network summary in the Properties pane.
Import Data
To load the data into Deep Network Designer, on the Data tab, click Import Data > Import Image
Data. The Import Image Data dialog box opens.
In the Data source list, select Folder. Click Browse and select the extracted MerchData folder.
Divide the data into 70% training data and 30% validation data.
Specify augmentation operations to perform on the training images. Data augmentation helps prevent
the network from overfitting and memorizing the exact details of the training images. For this
example, apply a random reflection in the x-axis, a random rotation from the range [-90,90] degrees,
and a random rescaling from the range [1,2].
1-19
1 Getting Started
To retrain SqueezeNet to classify new images, replace the last 2-D convolutional layer and the final
classification layer of the network. In SqueezeNet, these layers have the names 'conv10' and
'ClassificationLayer_predictions', respectively.
On the Designer pane, drag a new convolution2dLayer onto the canvas. To match the original
convolutional layer, set FilterSize to 1,1. Edit NumFilters to be the number of classes in the
new data, in this example, 5.
Change the learning rates so that learning is faster in the new layer than in the transferred layers by
setting WeightLearnRateFactor and BiasLearnRateFactor to 10.
Delete the last 2-D convolutional layer and connect your new layer instead.
1-20
Get Started with Transfer Learning
Replace the output layer. Scroll to the end of the Layer Library and drag a new
classificationLayer onto the canvas. Delete the original output layer and connect your new
layer in its place.
1-21
1 Getting Started
Train Network
To choose the training options, select the Training tab and click Training Options. Set the initial
learn rate to a small value to slow down learning in the transferred layers. In the previous step, you
increased the learning rate factors for the 2-D convolutional layer to speed up learning in the new
final layers. This combination of learning rate settings results in fast learning only in the new layers
and slower learning in the other layers.
1-22
Get Started with Transfer Learning
To train the network with the specified training options, click Close and then click Train.
Deep Network Designer allows you to visualize and monitor the training progress. You can then edit
the training options and retrain the network, if required.
1-23
1 Getting Started
To export the results from training, on the Training tab, select Export > Export Trained Network
and Results. Deep Network Designer exports the trained network as the variable
trainedNetwork_1 and the training info as the variable trainInfoStruct_1.
You can also generate MATLAB code, which recreates the network and the training options used. On
the Training tab, select Export > Generate Code for Training. Examine the MATLAB code to learn
how to programmatically prepare the data for training, create the network architecture, and train the
network.
I = imread("MerchDataTest.jpg");
[YPred,probs] = classify(trainedNetwork_1,I);
imshow(I)
label = YPred;
title(string(label) + ", " + num2str(100*max(probs),3) + "%");
1-24
Get Started with Transfer Learning
References
[1] ImageNet. http://www.image-net.org
[2] Iandola, Forrest N., Song Han, Matthew W. Moskewicz, Khalid Ashraf, William J. Dally, and Kurt
Keutzer. "SqueezeNet: AlexNet-level accuracy with 50x fewer parameters and <0.5 MB model
size." Preprint, submitted November 4, 2016. https://arxiv.org/abs/1602.07360.
See Also
trainNetwork | trainingOptions | squeezenet | Deep Network Designer
More About
• “Try Deep Learning in 10 Lines of MATLAB Code” on page 1-13
• “Classify Image Using Pretrained Network” on page 1-15
• “Transfer Learning with Deep Network Designer”
• “Create Simple Image Classification Network Using Deep Network Designer” on page 1-29
• “Create Simple Image Classification Network” on page 1-26
• “Create Simple Sequence Classification Network Using Deep Network Designer”
1-25
1 Getting Started
For an example showing how to interactively create and train a simple image classification network,
see “Create Simple Image Classification Network Using Deep Network Designer” on page 1-29.
Load Data
Load the digit sample data as an image datastore. The imageDatastore function automatically
labels the images based on folder names.
digitDatasetPath = fullfile(matlabroot,'toolbox','nnet','nndemos', ...
'nndatasets','DigitDataset');
Divide the data into training and validation data sets, so that each category in the training set
contains 750 images, and the validation set contains the remaining images from each label.
splitEachLabel splits the image datastore into two new datastores for training and validation.
numTrainFiles = 750;
[imdsTrain,imdsValidation] = splitEachLabel(imds,numTrainFiles,'randomize');
Define the convolutional neural network architecture. Specify the size of the images in the input layer
of the network and the number of classes in the fully connected layer before the classification layer.
Each image is 28-by-28-by-1 pixels and there are 10 classes.
inputSize = [28 28 1];
numClasses = 10;
layers = [
imageInputLayer(inputSize)
convolution2dLayer(5,20)
batchNormalizationLayer
reluLayer
fullyConnectedLayer(numClasses)
softmaxLayer
classificationLayer];
For more information about deep learning layers, see “List of Deep Learning Layers”.
1-26
Create Simple Image Classification Network
Train Network
By default, trainNetwork uses a GPU if one is available, otherwise, it uses a CPU. Training on a
GPU requires Parallel Computing Toolbox™ and a supported GPU device. For information on
supported devices, see “GPU Support by Release” (Parallel Computing Toolbox). You can also specify
the execution environment by using the 'ExecutionEnvironment' name-value pair argument of
trainingOptions.
net = trainNetwork(imdsTrain,layers,options);
1-27
1 Getting Started
For more information about training options, see “Set Up Parameters and Train Convolutional Neural
Network”.
Test Network
YPred = classify(net,imdsValidation);
YValidation = imdsValidation.Labels;
accuracy = mean(YPred == YValidation)
accuracy = 0.9892
For next steps in deep learning, you can try using pretrained network for other tasks. Solve new
classification problems on your image data with transfer learning or feature extraction. For examples,
see “Start Deep Learning Faster Using Transfer Learning” and “Train Classifiers Using Features
Extracted from Pretrained Networks”. To learn more about pretrained networks, see “Pretrained
Deep Neural Networks”.
See Also
trainNetwork | trainingOptions
More About
• “Start Deep Learning Faster Using Transfer Learning”
• “Create Simple Image Classification Network Using Deep Network Designer” on page 1-29
• “Try Deep Learning in 10 Lines of MATLAB Code” on page 1-13
• “Classify Image Using Pretrained Network” on page 1-15
• “Get Started with Transfer Learning” on page 1-17
• “Transfer Learning with Deep Network Designer”
• “Create Simple Sequence Classification Network Using Deep Network Designer” on page 1-34
1-28
Create Simple Image Classification Network Using Deep Network Designer
Load Data
Load the digit sample data as an image datastore. The imageDatastore function automatically
labels the images based on folder names. The data set has 10 classes and each image in the data set
is 28-by-28-by-1 pixels.
Open Deep Network Designer. Create a network, import and visualize data, and train the network
using Deep Network Designer.
deepNetworkDesigner
To import the image datastore, select the Data tab and click Import Data > Import Image Data.
Select imds as the data source. Set aside 30% of the training data to use as validation data.
Randomly allocate observations to the training and validation sets by selecting Randomize.
1-29
1 Getting Started
In the Designer pane, define the convolutional neural network architecture. Drag layers from the
Layer Library and connect them. To quickly search for layers, use the Filter layers search box in
the Layer Library pane. To edit the properties of a layer, click the layer and edit the values in the
Properties pane.
1-30
Create Simple Image Classification Network Using Deep Network Designer
For more information about deep learning layers, see “List of Deep Learning Layers”.
Train Network
On the Training tab, click Training Options. For this example, set the maximum number of epochs
to 5 and keep the other default settings. Set the training options by clicking Close. For more
information about training options, see “Set Up Parameters and Train Convolutional Neural
Network”.
1-31
1 Getting Started
The accuracy is the fraction of labels that the network predicts correctly. In this case, more than 97%
of the predicted labels match the true labels of the validation set.
To export the trained network to the workspace, on the Training tab, click Export.
1-32
Create Simple Image Classification Network Using Deep Network Designer
For next steps in deep learning, you can try using pretrained networks for other tasks. Solve new
classification problems on your image data with transfer learning. For example, see “Get Started with
Transfer Learning” on page 1-17. To learn more about pretrained networks, see “Pretrained Deep
Neural Networks”.
See Also
trainingOptions | Deep Network Designer
More About
• “Create Simple Image Classification Network” on page 1-26
• “Start Deep Learning Faster Using Transfer Learning”
• “Try Deep Learning in 10 Lines of MATLAB Code” on page 1-13
• “Classify Image Using Pretrained Network” on page 1-15
• “Get Started with Transfer Learning” on page 1-17
• “Create Simple Sequence Classification Network Using Deep Network Designer” on page 1-34
1-33
1 Getting Started
To train a deep neural network to classify sequence data, you can use an LSTM network. An LSTM
network is a type of recurrent neural network (RNN) that learns long-term dependencies between
time steps of sequence data.
Load Data
Load the Japanese Vowels data set, as described in [1] on page 1-0 and [2] on page 1-0 . The
predictors are cell arrays containing sequences of varying length with a feature dimension of 12. The
labels are categorical vectors of labels 1,2,...,9.
[XTrain,YTrain] = japaneseVowelsTrainData;
[XValidation,YValidation] = japaneseVowelsTestData;
View the sizes of the first few training sequences. The sequences are matrices with 12 rows (one row
for each feature) and a varying number of columns (one column for each time step).
XTrain(1:5)
deepNetworkDesigner
Pause on Sequence-to-Label and click Open. This opens a prebuilt network suitable for sequence
classification problems.
1-34
Create Simple Sequence Classification Network Using Deep Network Designer
1-35
1 Getting Started
You can easily adapt this sequence network for the Japanese Vowels data set.
Select sequenceInputLayer and check that InputSize is set to 12 to match the feature dimension.
1-36
Create Simple Sequence Classification Network Using Deep Network Designer
Select fullyConnectedLayer and check that OutputSize is set to 9, the number of classes.
To check the network and examine more details of the layers, click Analyze.
1-37
Other documents randomly have
different content
been the first to go under, then the smaller tradesmen, crushed by the
alcabala tax on all sales, and the tampering with the currency; and the turn
now had come of the great merchants and bankers; whilst even the nobles
and churchmen had been bled freely by the last "voluntary donation."[1] In
these circumstances it is not surprising that the dissatisfaction became
almost clamorous in its intensity. Such pasquins passed from hand to hand
on Liars' Walk that people said that the ghost of Villa Mediana must surely
be walking his old haunts again, so bitter were they. Olivares, it was
whispered, had poisoned the Infante Carlos, and had tried to send Fernando
by the same road. The French were ready with great armies to devastate
Spain, only because Olivares was coquetting with the rebel Orleans. Even
the Pope, said the gossips, was being insulted and flouted by this minister,
who was but an ill-born Jew in disguise.[2] "If you heard," wrote Hopton to
Cottington, in August 1632, "the libels and foolish inventions of the people
against the Conde, you would never desire to be a favourite."[3]
This budget of scandal sent to the King of England shows how utterly
rotten was the moral condition of the Court, when it sufficed for one
disgraceful episode to be made public for a whole string of others to follow
touching the honour of those who stood highest. This scandalous
immorality, arising apparently from the absolute degeneration of religion
into a formula, and of its ceasing to be a guide of conduct, extended to all
classes of society, and terrified stories were told of horrible irreligious rites
being carried on in the conventual houses themselves by a secret society
called the "illumined ones" (alumbrados). The particulars of one awful
scandal of the sort, which was investigated by the Inquisition at this time
(1633), caused great excitement in Madrid. It related to the proceedings of
the nuns of St. Placido of Madrid, who were pronounced by the Benedictine
chaplain, Fray Garcia, to be nearly all possessed of the devil; and on the
pretext of exorcising them he was with them almost day and night. This
went on for three years, when the fact that twenty-eight out of the thirty
nuns in the convent were said to be possessed appeared so strange and
suspicious, that the Inquisition intervened; and, in the course of a long
inquiry and much torture of the chaplain, uncovered an appalling story of
sacrilege, black magic, and immorality combined, for which all the persons
implicated were severely punished; though a few years afterwards (1638)
an attempt was made to whitewash the condemned.[9]
Long discussions with the Council of State and with Olivares kept
Hopton busy in Madrid for months; the while the great betrayal proposed
was kept from the Secretary of State and all the responsible ministers in
England, a good foretaste of the policy that led Charles Stuart to ruin and
the block. To the official Secretary of State, Hopton had much to say about
the great preparations being made in Spain for war, but no word about the
secret plan for England to join in it on the Catholic side. Great loans and
levies are constantly being raised, he reported in April 1634.
Olivares was beset on all sides. Detested by the nobles, with nearly all of
whom he was at feud;[16] feared and dreaded by the commercial
community, whom he had ruined; overworked, and at his wits' end to face
the vast present and prospective drains upon the national resources, striving
not only to do all the work of State himself and to direct everything, but
also to keep the King in a good humour by providing an endless series of
amusements for him, the Count-Duke was "so spent with the burden of
business that lies upon him," as Hopton wrote, "as to deserve pity, if he
would only pity himself." There was no class of people now that did not
feel the crushing weight of the war expenditure, even before the great war
with France had begun. In June 1634, Hopton reports that "a new tax had
been imposed of one-eighth of the value of all wine sold in Madrid, with no
exception allowed, and one twenty-fourth of all that is sold in the Castilian
realms. All the shops that sell wine are shut, so that all stock may be
registered and an account be rendered of sales. They think thus to charge
the retailer under great penalties. It is like to be a great trouble, and the
greater part of the benefit will be consumed in officers and false accounts."
"I doe much doubte," he continues, "that by degrees those impositions will
first be laid upon all things of home fabric and growth, and afterwards upon
those things imported from abroad; and your Honour (Coke) may guess to
what immoderation the revenues of this crown will grow by this means."
[17]
"All the Court is at the new house" (i.e. the Buen Retiro) "for a
fortnight," wrote Hopton in July 1634, "which time hath been spent in all
manner of entertainments and much to their Majesties' contentment,
wherein the Count of Olivares took great pains, all things being ordered by
himself; and so well, as it savoured of his excellent judgment in all things,
especially in the furniture of the house, which was such as not to be thought
there had been so many curiosities in the whole kingdom; and this at very
little expense, for it was for the most part done by presents. Howbeit the
things that were bought were dearly and punctually paid for, inasmuch as
nobody can wisely complain."
Furnishing the Doubtless no one could wisely complain, but many had
Buen Retiro reason to do so, for few great people with art collections
escaped spoliation, and the other palaces were to a great
extent denuded of their treasures, for the purpose of cramming the Buen
Retiro with rarities. Some of the nobles, like the Auditor Tejada, were artful
enough to have copies made of their best pictures, and sent the copies as
originals to the Buen Retiro. But, as in his case, this was bitterly resented by
Olivares if it was found out. The Marquis of Leganés, the nephew of the
Count-Duke, had a superb collection of pictures and articles of vertu
brought from Flanders and Italy; but when he was called upon to disgorge,
his wife stepped in and claimed the whole collection as her dowry, and the
Marquis was let off with the present of a piece of tapestry. The chapel was
fitted up at the expense of the President of the Council of Castile; the
Infante Fernando continued to send beautiful objects, many of them spoils
of war from Flanders; Olivares' brother-in-law Monterey had to surrender
much of the vast store of pictures he had collected at Naples; and all the
painters in Madrid were kept busy copying or designing canvasses for the
new palace,[18] under the direction of the King's painter, Don Diego
Velazquez, who, having returned from his long visit to Rome, was now, and
had been for the last three years, again working indefatigably in his studio
in the old Alcazar.
This, indeed, was the period when the great artist produced some of the
best of his work, such as the Surrender of Breda (the Lanzas), the portraits
of the child Prince Baltasar Carlos, the fine portrait of Olivares reproduced
in this book, and the famous equestrian portrait of Philip himself. In the
midst of all the growing national trouble, this in many respects was the
most brilliant and perhaps the happiest time of Philip's reign, so far as he
personally was concerned. His habits were fixed and his pleasures keen. His
fits of contrition were frequent, it is true; but they were always banished by
fresh pleasures or amours contrived by Olivares. The King intermittently
attended to State business himself; but the interminable discussions and
reports by the various Councils upon every subject made the despatch of
business peculiarly irksome and tedious. The Spanish system of a
consultative and deliberative bureaucracy, indeed, seemed specially devised
to disgust anyone but a patient laborious plodder like Philip II. His
grandson, impatient of detail and quick of apprehension, loathed the dull
pompous discussions of the Councils, and not unnaturally was content to
hear a summary of results from Olivares, whose final decision he always
confirmed.
Whatever may have been the sum of Philip's infidelities, and it cannot be
denied that they were numerous, they were never more than temporary and
vulgar intrigues, which, whilst they would naturally annoy his wife, did not
threaten her permanent influence or interfere with her continuous marital
life with her husband. With monotonous regularity almost every year the
Queen gave birth to a child, usually a girl, whose advent was an excuse for
the customary series of costly festivities so often described in earlier pages,
festivities that in most cases lasted almost as long as the life of the child
whose advent they greeted; for all the infants up to this time (1634) had
died except the sturdy, promising little Baltasar Carlos, who was idolised by
his father and mother, and, so far as the oppressive etiquette of the Court
would allow, was petted by the whole Court. The little Prince who was born
in 1629, had early developed a love for horsemanship and field sports, and
as a baby horseman, hunter, or soldier, he is presented to the life again and
again by Velazquez. From Flanders his admiring uncle Fernando sent him
many presents, beautiful armour and weapons in miniature, which now
adorn the rich Armeria in Madrid, martial toys, and above all in 1633 what
afterwards became the Prince's favourite steed, a "little devil of a stallion
pony," as the Infante calls him, that had to be lashed liberally before
Baltasar Carlos was allowed to mount him.[19]
The promise that none but Portuguese should rule in the country had
been disregarded almost from the first in the appointment of Viceroys. The
Austrian nephew, the Archduke Albert, had reigned under Philip II.; and
Moura, the wise half-Portuguese minister of Philip II., had ruled Portugal
for years under his son. But to appoint a Portuguese noble now, with
Olivares' known policy, would have been highly dangerous, and the
Portuguese would hardly have stood a Spanish noble, even if Philip had
dared to appoint one. The policy of conciliation that Philip II. had adopted
had left the house of Braganza, which had a better claim to the Portuguese
crown than Philip, richer and more powerful than most sovereigns. The
reigning Duke of Braganza had married a sister of the Spanish Duke of
Medina Sidonia, the head of the Guzmans, of which house Olivares was a
cadet; and in normal circumstances Braganza might have been the ideal
man for Viceroy. But the circumstances were not normal. The deepest
discontent reigned in the country at the ruin that had befallen its trade in
consequence of its union with Spain, and especially at the new taxation for
Spanish objects proposed at the bidding of Olivares; and a subject so
powerful and so popular as Braganza was naturally suspect. The difficulty
was met at the end of 1634 by going somewhat far afield for a ruler of
Portugal. The younger daughter of Philip II., the Infanta Catharine, had
married Carlo Emmanuele, Duke of Savoy, in 1585; and one of their
daughters, Princess Margaret, the widowed and dispossessed Duchess of
Mantua, a first cousin of Philip, was brought to Spain to govern Portugal,—
the idea being that, as she was a lady and a foreigner, she would be a safe
and obedient instrument in the hands of Olivares. In November 1634 she
entered Madrid in great state, and at the bull-fights and other festivities held
to celebrate her coming she sat by the side of Philip and his Queen, which
the Madrileños thought a great and unusual honour, accorded in order to
give her higher prestige and authority before she set out for her fateful
government, a figurehead for Olivares' attempts against Portuguese
autonomy.
The growing danger from these provinces, and the busy intrigues of
Richelieu with the Dutch, to the intended detriment of Spain, again drove
Olivares to seek a renewal of the suspended negotiations intended to draw
Charles I. into the Catholic camp. At the end of July, Olivares sent for
Hopton in great excitement, to show him an intercepted letter of the Prince
of Orange, which, he said, disclosed a dangerous plan against England and
Spain. "Ah!" said the Count-Duke, "we ought to have carried out that
league of ours." "It was your fault," replied Hopton, "that it was not
concluded. Nicolalde in London was not authorised to give the necessary
pledges." "Well," retorted. Olivares, "the matter may be arranged now, if
you like." The hint was enough for Charles. The first thing, he said, was to
get rid of Nicolalde, who was unsympathetic; and he sent an English agent
named Taylor to Madrid to recommend this course to Philip.
Soon negotiations were in full swing again. Some great personage, the
Count of Humanes probably, was to be sent to England, whilst the Duke of
Medina Celi was to go to France, and endeavour to secure the return of
Marie de Medici the Queen-Mother and her son Orleans to France, which of
course would have meant the paralysation of Richelieu. When the news
came of the decisive battle of Nördlingen (page 260), gained over the
Swedes and Weimar by the Infante Fernando, the great rejoicings and
festivities with which Philip greeted the victory (October 1634), the
bonfires and bull-fights and Te Deums, did not disguise the fact that war
with France sooner or later must now be inevitably faced, and the efforts to
come to an agreement with England proceeded more warmly than ever.
But whilst Olivares was thus striving to obtain at least the neutrality of
England on the easiest terms for Spain, there was other diplomacy at work
at least as profound and more generous than his. The battle of Nördlingen
had broken up the effective league between Sweden and the German
Protestants, and John Frederick of Saxony, with the other German
Lutherans, soon made terms of compromise with the Emperor, by which
they gained the toleration they sought, and the Thirty Years' War came to an
end, so far as the religious struggle in Germany was concerned. But the far-
reaching schemes of Richelieu would have been frustrated if the war had
ended here, leaving Spain free from the drain of helping the Emperor; for
then she would have had power to deal with Holland effectually, and re-
establish her waning hold over Italy to the injury of France. So, as war with
Spain was necessary for Richelieu, he took good care to isolate his
opponent before it began. He first effected an alliance with the United
Provinces, and intrigued in Catholic Flanders with the nobles. Then he drew
into his net Savoy, Mantua, and Parma; he occupied the Valtelline again,
and Sweden was coupled to the car of France anew by Axenstiern, whilst,
as a last stroke, he strove hard to include Charles I. in his league with the
Dutch.
A little later Hopton writes: "Their (the Spaniards) only hope for
Flanders and at sea is the friendship of our King. And yet they retain their
gravity, as if they were the arbiters of the world. I saw the Conde yesterday,
and, though he was a little troubled, yet he is very confident that all would
end to their honour."
The conclusion of the precious alliance with King Charles had evidently
at last to be carried through, or further delayed, by more highly-placed
ambassadors than Hopton and Nicolalde; and it was decided that Sir Walter
Aston should go to Madrid and the Count of Humanes to London. Olivares
was, or pretended to be, apprehensive of the coming of a new English
ambassador, but was assured by Hopton that Sir Walter was all that could be
desired from the Spanish point of view. Humanes, on the other hand, was
reported to be "an honest gentleman, but with a good enough conceipt of
himself. Thinking to get great things, he will be a little hard to deal with in
England." But the seas were crowded with Dutch and French cruisers, and
the land route through France was of course closed to Spaniards, so it was a
difficult thing to get Humanes to England at all, unless he went back in the
English ship that brought Aston. And so month after month of 1635 slipped
by, the war proceeding actively in Flanders against the Infante Cardinal, and
the French troops threatening Catalonia from Perpignan, whilst the English
treaty with Spain was still on the balance. Hopton, in June 1635, told
Olivares that this coldness and delay in his proceeding was producing a bad
effect in England, and that unless they stirred themselves King Charles
might look elsewhere. "Upon what ground do you say that," asked Olivares.
"Upon Nicolalde's way of proceeding, and the delay that is taking place. It
makes us think that the whole thing is a pretence," replied Hopton.
"Everything is now practically settled with very few alterations, and there
need be no more delay," Olivares assured him.
In July alarming news came to Madrid, that the Infante Cardinal had
sustained severe defeat in the Low Countries (at Tirlemont), and was in
personal danger. The Infante was intensely beloved in Spain, and the evil
tidings "caused great care to their Majesties and the whole Court, for I
cannot express what tenderness all sorts of people show to the Infante,"
wrote Hopton; and, almost for the first time, Philip flew into a violent rage
with Olivares, when he learnt that a letter written by the Infante, asking for
further resources, had been concealed from him. Olivares found himself
faced now, as he had never been before, by a determination on the part of
Philip to act in opposition to his advice. Philip had no lack of personal
courage, and under stress was capable of prolonged exertion. He was
burning, too, to distinguish himself in arms, as his brother had done; and,
urged thereto by many of Olivares' enemies, he was insistent in his wish to
lead his armies in person on the Catalonian frontier, now threatened by the
French. Olivares, knowing that if the King were in the field he could not
keep him isolated, or hope to retain his exclusive hold upon him, resisted
the King's desire to the utmost, and almost daily squabbles took place
between them on the subject.
The plot It was clear now to Olivares that the aid of English ships
thickens in the Channel was really in the circumstances desirable for
the success of Spain in Flanders. The road through
Lombardy had been rendered difficult by the adhesion of the several Italian
princes to Richelieu's league, and the war that was proceeding on the Rhine;
and the sea route was equally dangerous by reason of the Dutch and French
squadrons. So the Count-Duke made another desperate attempt to buy
Charles Stuart cheaply, and on trust. Late in July 1635, Olivares sent a very
pressing message to Hopton that he wanted to see him, and when the
ambassador presented himself in the palace, the Count-Duke asked him if
he had a confidential English servant he could lend him, to hurry off to
England at once with despatches for Nicolalde in London. "Yes," replied
Hopton, "my man David Matthew will serve your turn"; and before many
hours had passed David Matthew was speeding on his way to London, with
instructions to the Spanish agent that the maritime treaty was to be settled at
all costs. The question of the Palatinate, Olivares told Hopton again, should
really be settled now, though, not unnaturally, Hopton had his doubts; for he
knew secretly that the rebel Earl of Tyrone had been brought disguised to
Madrid by the Emperor's ambassador, and was plotting even then with
Olivares to raise sedition in Ireland if King Charles turned to the side of the
French.
Money, as usual, was the great desideratum for Philip, if the war was to
be carried on with hope of success. Cortes were summoned both in Castile
and Barcelona, and the former, as usual, did as they were asked, and voted 3
million ducats for the year;[23] Olivares having at the time laid by, as we
are told, no less than 8 millions, "which he will make 16 before the war
begins in earnest." Spain was fortunate that year 1635, too, with the Indies
fleet, which arrived in June with 14 millions of ducats, "of which the
greater part will reach the King, besides the good profit he will get out of
the confiscations." The Cortes of Barcelona was, as always, difficult to deal
with; and for a time they were obstinate in their refusal to vote anything at
all. But it was their own country now that was threatened, and on the
promise of the King to relieve them from the levy of men for his armies, the
Cortes of Catalonia agreed to vote him 400,000 ducats, and promised as
much more as they could afford.
Philip's revolt Philip's great dispute with Olivares was with regard to his
wish to visit Barcelona during the session of the Cortes, and
to remain there with his army, ready to lead it either to Italy, France, or
elsewhere, as the events of the war might demand. The favourite was
shocked at the King being exposed to such danger, and especially at the
idea that he might leave the country; and he opposed with all his experience
and authority the King's plan. "If Olivares can hinder the King from
engaging his person he will do so. He pretends to give way, so as not to
cross the King, who is set upon it, but he will not fail of ways to compass
that which he wishes."[24] But though Olivares was determined, Philip was
obstinate; and when the minister, as was his wont, told the King that the
Council of State was opposed to his going, Philip addressed a rescript to the
Council, ordering them to discuss and vote on the question of his going, but
that every Councillor should give his reasons individually to him for the
advice he tendered. This was not in accordance with the usual procedure,
and under Olivares' guidance the Council declined to do it, saying that the
Count-Duke's knowledge of their opinions was so complete that he would
report them to the King. It appears that Philip had given peremptory orders
to Olivares to make every preparation for his immediate departure, and this
was the subject submitted by the minister to the Council for discussion.
With the arrogant Count-Duke dominating them, the Councillors, who were
all his humble servants, of course agreed with him against the King. Money
was short, they said, for the journey; and the recent successes in Flanders
might perhaps make the voyage unnecessary. In any case, they begged the
King not to undertake the matter lightly. Philip made the best of this halting
dissent, replying that he accepted the advice as to not going for the moment,
but ordered that everything should be made ready for his going at twenty
days' notice if it became necessary.[25]
Spanish troops were fighting under the Infante for the preservation of
Flanders, in Germany, in Italy, in the Valtelline, wherever the enemies of the
faith or the allies of Richelieu defied the Spanish claims; and yet it never
entered the head, apparently, either of Olivares or his master, that these
terrible sacrifices were useless to Spain; except that it was a point of honour
to hold the Catholic States of Flanders that had been the ancient inheritance
of its royal house. Holland was really lost beyond all recovery, though the
stiff-necked pride of Castile would not acknowledge it; the religious
question in Germany had already practically settled itself, and had left
Spain hardly an excuse for fighting for orthodoxy there. All that was
needed, even now, for Spain was to eat her unavoidable leek, to recognise
facts patent to all the world, and to abandon her impossible pretensions; and
peace with France and Holland might have been attained with ease. But
through all the suffering and stress, that if continued meant national
exhaustion, there was no indication anywhere of the conviction that Spain
must voluntarily humble herself or bleed to death.
On New Year's Eve 1636, we are told, "their Majesties went to dine at
the Buen Retiro, where there was in the afternoon a sort of comedy or
festival never seen before in Spain. First there appeared the poet Atillano,
who has come from the Indies, and who may justly be called a prodigy of
the world, as he proved himself to be on this occasion; for such is his poetic
rage, that he utters a perfect torrent of Castilian verse on any subject
proposed to him,[30] and, withal, in very remarkable style, with much taste
and adornments from the Scriptures and classical authors, brought in most
aptly, with comparisons, emphasis, digressions, and poetic figures, which
strike his hearers with astonishment, many believing that it can only be
done by devilish arts, for he never drops a foot or forgets a syllable.... After
Atillano came Cristobal, the blind man, well known at Court; and he also
showed his skill in turning out couplets impromptu, with his usual
prettiness and propriety, and quite in courtier-like fashion. But as he lacks
erudition, and the other man possesses much, you may well imagine the
difference between them. After the poets came Calabaza, the dwarfs, the
little negro, and the girls they call the Count's wrigglers;[31] and they
represented their figures and played a hundred monkey tricks to raise a
laugh. Afterwards the party ended by a ball and masquerade. It was very
good and diverting; and my lady Countess of Olivares gave the collation to
their Majesties."
Progress of the The year thus fittingly begun in the Court was signalised
war by the Cardinal Infante Fernando in Flanders and France by
military capacity which recalled the great days of the
Emperor a hundred years before. The French and Dutch allies were already
suspicious of each other, and were not co-operating cordially; so that
Fernando had been able to wear out the resistance of the French without a
general engagement, and whilst they, disorganised and decimated with
famine and disease, retreated into France, the Infante overran Picardy and
Champagne. He pushed his advance beyond the Somme and to the banks of
the Oise, threatening Paris itself, and elated Olivares planned a
simultaneous invasion of France under the Admiral of Castile, and yet
another from the side of Germany over the frontier of Burgundy. The only
one of these attacks that came to anything was that of the Cardinal Infante;
but even he, either from want of resources or lack of boldness, lagged on
the line of the Somme and Oise until the French had recovered from their
panic. Orange was also marching to aid his ally, and Paris had raised a great
army of citizens to resist further attack; and early in 1637 the Spaniards,
under the Cardinal Infante, had retreated into Flanders again, forced once
more to stand on the defensive. But the net result of the temporary display
of Spanish vigour had been to free the Catalonian frontier from imminent
fears from the French, and Philip had found no excuse for insisting further
upon his desire to place himself in command of his troops in Barcelona.
There was, indeed, in all spheres a shocking absence of real dignity and
restraint. Crimes of the most horrible description are mentioned as being
prevalent in the better classes;[35] and after the first outcry they were
allowed to go almost unpunished and unchecked. As may be supposed, in
such a state of society superstition of the grossest description was common.
The proceedings of the miracle-working nun of Carrion, to whom, it will be
recollected, the Infanta Maria had recommended the Prince of Wales, had
become so notorious that the Inquisition had taken her in hand, and
condemned her as a witch and an impostor. But this appears only to have
increased her fame for sanctity, for several books in her praise were burnt
by the Inquisition, and every measure taken to expose her frauds by the
Holy Office; but with so little effect, that after her death, early in 1637, an
edict was read in every church in Madrid pronouncing major
excommunication against all those who retained images, portraits,
signatures, crosses, certificates, beads, or books relating to her.[36] When
the Marquis of Aitona was unwilling to start from Madrid to take up the
governorship of Milan in the spring of 1636, and delayed his departure from
week to week, a fresh pretext for delay, and one generally praised, was that
it would be most unwise for him to leave Madrid on the Ides of March,
because it was the anniversary of the murder of Cæsar.
Whilst Olivares bore upon his bowed shoulders the whole burden of
government, resorting to the most empirical means to raise money, such as
calling in the copper coin and restamping it to three times its former value,
[38] the King had to be distracted and kept amused by never-ending
entertainments, such as those that have been described in former pages.[39]
Hardly a week passed without some pretext for a long series of such shows,
which now usually took place at the favourite Buen Retiro. Aston, in one of
his letters to Coke in May 1636,[40] describes the festivities of Whitsuntide
that year.
"Three days of noble feasting," he calls it; "the first day a masquerade on
horseback, in the evening, and bull-fights on the other two days, with cane
tourneys. I was invited to all of them, and had the particular honour on the
first night to be placed in a balcony in the King's own apartments with the
grandees; this being an unusual honour. On the other days I occupied a
special balcony with my own people. When the welcome news of the
Cardinal Infante's victories in Picardy came to Madrid late in September
1636, the rejoicings were frantic. His Majesty and all the Court rode to Our
Lady of Atocha to give thanks.... They returned at night through the streets,
illuminated by countless torches; all the Councils having been ordered to
make a celebration in honour of the occasion, they all complied famously,
and with great sumptuousness, each feast having cost 2000 ducats, and
others are yet to come which will surpass them all."[41]
Continual A few weeks later, an excuse was found in the expected
festivities arrival in Madrid of the French Bourbon Princess of
Carignano, wife of Prince Thomas of Savoy, who was
fighting for the Spanish under the Cardinal Infante, and it was determined
that in her honour the Buen Retiro should surpass itself. Before the Princess
had even embarked for Spain, the great preparations were begun "to finish
the new arena at the Buen Retiro. Experts have been despatched to the
country around Madrid to obtain the 80,000 planks which will be needed
for the barriers that are to surround it. The work is going on so actively,
both in levelling the ground and erecting the woodwork, that there is no
cessation, even on Sunday or feast days; and the Corregidor has erected
there a scaffolding with a (neck) ring to punish the workmen who do not
complete their task properly, as an example to the others. A triumphal car is
also being made, of which the cover alone is to cost 4000 ducats; and it will
be enclosed in glass, in order that the inside may look more beautiful."[42]
"The King and Queen retired to Buen Retiro to enjoy the curious gardens
and new waterworks contrived by Olivares, and a great variety of festivals.
One on Midsummer night was of the greatest ostentation and curiosity I
have ever seen in my life. I had the honour to be invited to it, and had
extraordinary favour and respect shown in the place that was given to me.
The entertainment was a play that was made on purpose to be acted by the
three several companies of players of this town, the intention whereof was
so good; the place where it was acted being set out with three several scenes
of much ostentation, and the disposition of the lights so full of novelty and
delight, that I am highly tempted to give your honour a larger description of
it, but that it would prove to be business enough for a large letter."[43]
It was not all feasting and play-going for Sir Walter Aston at the historic
"house with the seven chimneys." When he arrived to replace Arthur
Hopton, early in 1636, the famous agreement between Philip and Charles
was still uncompleted, and the complaints of the English shipmasters
against Spanish oppression were louder and more insistent than ever.
Tyrone and the Desmonds were in Madrid negotiating for the raising of
fresh Catholic Irish regiments for the Spanish service, and urging Philip to
make no terms about the Palatinate unless Charles would restore the lands
of O'Neill. But the aid of an English fleet in the Channel became more and
more desirable to Spain as the war went on; and it was clear that the old
vague promises and smiling plausibilities of Olivares had at last lost their
efficacy with Charles. An instructive light is thrown upon the methods by
which Olivares still strove to cope with the situation, by an original
holograph letter in the Record Office[44] from Olivares' confidential
secretary Rojas, to the imperial ambassador in Madrid, asking him by King
Philip's orders to "give some words of hope to the English ambassador
about the Palatinate." "It is of the utmost importance that we should make
use of all such expedients as present themselves; as it appears that the King
of England is extremely busy preparing a powerful fleet to be used to the
detriment of this Crown, ... probably against Brazil, in co-operation with the
Hollanders."
Hopton, when he arrived in London and heard the news, wrote to Aston
by Richard Fanshawe, who was on his way to Spain:
"A greater change has taken place in our purposes in the last month than
in years before. Our eyes are now opened to the intention of the house of
Austria to keep hold of the Palatinate. They must have a very mean opinion
of us to treat our King with so little courtesy. If his Majesty gives way to the
opinion of his subjects about the Palatinate, it will prove to Spain their
error. It is incredible that they should act thus. They will certainly lose us if
they be not careful." At the same time, the Spaniards were boasting in
Madrid that "the Palatinate has been put to bed, and the King of England
will not dare to break with us about it."
England again The need of Spain for English co-operation was now
shelved once again growing less urgent, for the star of Richelieu was
temporarily dimmed. The coalition of the Italian princes
against Spain had fallen to pieces, the Dukes of Mantua and Savoy died,
and Parma was forced to submit to Spain. The Valtelline was retaken and
occupied by the Spanish troops, and the Grisons conciliated; whilst
Cardinal la Valette's campaign in 1637 against the Infante Cardinal partially
failed. In Germany, too, the French were defeated all along the line, and,
worst of all, France lost Alsace. Richelieu, moreover, was faced by the
dangerous Court intrigues of Gaston of Orleans and his cousin Soissons,
and half France was in smouldering revolt against the taxation imposed by
the great Cardinal. The way across Lombardy and Tyrol to Germany and
Flanders by land was now open to Spanish troops; and Olivares, having
kept unstable Charles of England on the tenterhooks all these years with the
bait of the Palatinate, could now snap his fingers at him, and for a time drop
the mask.
[1] An attempt was made to enforce gifts of this donation from foreigners, and four English
youths at Bilbao resisted, but on Hopton's representations they were exempt.
[2] In fact, a notification had been sent to the Pope that the Nuncio in future would be
treated as any other ambassador, and the large revenue drawn by the Papacy from Spain
would be in future taken by the King. Upon this the Nuncio was withdrawn, and much
trouble ensued.
[3] Corner, the Venetian ambassador in Madrid, writing at the same period, says: "He
(Olivares) is greatly hated both by the grandees and by the people of all classes, but
nobody believes that he can be turned out of his place.... He is very austere and hard in his
dealings with people, which causes great anger, and the murmurs against him are open and
loud, even the preachers in the pulpits denouncing him; and everybody is saying that it is a
wonder he can stand against it all."
[4] As if to silence these terrible hints, Olivares had at this time adopted an ostentatiously
saintly mode of life. Corner speaks of him as living very quietly and in great melancholy
since the death of his only daughter. "He professes to live in much piety and devotion,
confessing and communicating every day. He has so many masses said daily, and to all
appearance lives the life of a devotee. He has now begun to lie in a coffin in his chamber
like a corpse, with tapers around him, whilst the de profundis is sung; whilst in ordinary
affairs he talks like a capuchin friar, and speaks of the grandeur of this world with the
greatest disdain."
[6] Hopton, writing soon after this (January 1634), says the levies are going on very slowly.
Yesterday a pragmatic was published limiting the number of lackeys and squires, all