Drawing circles on a x axis

4 Ansichten (letzte 30 Tage)
Chris Dan
Chris Dan am 20 Jun. 2020
Kommentiert: Star Strider am 20 Jun. 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..?

Akzeptierte Antwort

Star Strider
Star Strider am 20 Jun. 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 Kommentare
Chris Dan
Chris Dan am 20 Jun. 2020
thanks :)
Star Strider
Star Strider am 20 Jun. 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by