フィルターのクリア

Using file for graph

1 回表示 (過去 30 日間)
minsick
minsick 2020 年 4 月 7 日
回答済み: Ameer Hamza 2020 年 4 月 7 日
I am looking for make 3 dimensional graph with data file
There are three paramter (file name, x, y).
Could you share matlab code or example?
please find attached file

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 7 日
Try this
filenames = {'11.txt','22.txt','33.txt'};
data = cell(1,numel(filenames));
for i=1:numel(filenames)
data{i} = readmatrix(filenames{i});
end
fig = figure();
ax = axes();
hold(ax);
grid on
view(3);
for i=1:numel(filenames)
plot3(data{i}(:,1), data{i}(:,2), i*ones(size(data{i}(:,1))), 'LineWidth', 1)
end
ax.ZTick = 1:3;
ax.ZTickLabel = filenames;
xlabel('x');
ylabel('y');
zlabel('filenames');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by