Drawing circles on a x axis

2 visualizzazioni (ultimi 30 giorni)
Chris Dan
Chris Dan il 20 Giu 2020
Commentato: Star Strider il 20 Giu 2020
Hello,
I have some data of points. I have x values of them. The y of all of them is 0
I want to draw those points as circles on the x axis.
I have attached the file with the question.
The code which I am using to load the file is
[files,pathToFiles] = uigetfile('*.mat',...
'Select One or More Files', ...
'MultiSelect', 'on');
out = {};
if ~iscell(files)
out{1} = load(fullfile(pathToFiles, files));
else
for k = 1:length(files)
out{k} = load(fullfile(pathToFiles, files{k}));
end
end
out = struct2cell(out{1});
Does anybody know how to draw them as circles..?

Risposta accettata

Star Strider
Star Strider il 20 Giu 2020
Probably the easiest way:
D = load('NodalList.mat');
GlobalMesh = D.GlobalMesh;
figure
plot(GlobalMesh, zeros(size(GlobalMesh)), 'o', 'MarkerSize', 10)
grid
xlim([-0.05 0.55])
The scatter function allow you to individually vary the sizes and colours of the circles, if you want to do that.
.
  2 Commenti
Chris Dan
Chris Dan il 20 Giu 2020
thanks :)
Star Strider
Star Strider il 20 Giu 2020
As always, my pleasure!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by