Combine parameters in controlchart
Show older comments
Question I have multiple parameters. These parameters are comparable with each other. As such you could look at it like one parameter with multiple values.
Say I have 5 comparble parameters each with 50 measurements,
X = rand(50,5)
I can of course combine the parameters to one vector and as such I can use the `controlchart` function like
controlchart(X(:),'charttype','i')
But I prefer the controlchart to look like
plot(X, ...
'LineStyle','none', ...
'Marker','.', ...
'MarkerSize',15, ...
'color',[0 0 1]);
ylim([-0.4 1.6])
Where the values of the parameters are combined on the same point on the X-axis. This namely because the measurement of the parameters are from the same instance.
How can I achieve this?
Answers (0)
Categories
Find more on Particle Swarm in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!