setNodeColors (networkvisualizer)

index

setNodeColors (networkvisualizer)

Set the node colors of a networkvisualizer object.

Syntax

net = setNodeColors(net, RGB)
net = setNodeColors(net, values)
net = setNodeColors(net, values, categories)
net = setNodeColors(net, values, categories, classname)

Arguments

Description

Examples

Set the node colors randomly to one of default colors

rng(1, 'twister'); % For reproducibility
% Generate a random network with 50 nodes and 100 edges
nNode = 50;
prepareRandomNetwork = @(n1, n2, numedges) logical(sparse(...
   randi([1 n1], numedges, 1), randi([1 n2], numedges, 1), 1, n1, n2));
W = prepareRandomNetwork(nNode, nNode, 100);
net = networkvisualizer(W);
% Set the node colors randomly to one of default colors
defaultcolors = net.getDefaultColors();
colors = defaultcolors(randi([1 3], nNode, 1), :);
net.setNodeColors(colors);
% Plot the network
plot(net);

which produces:

Apply quantitative coloring

% Set a random color for each node between white (0) and light blue (1)
nodeColors = color_spacing_continuous(rand(nNode, 1), [0 1], [1 1 1; 0 0.5 1]);
net = setNodeColors(net, nodeColors);
% Draw the network again
plot(net);

which produces:

See Also

networkvisualizer, addNodeClass, setNodeLabels, setNodeFontSize