採用された回答

darova
darova 2020 年 3 月 4 日

0 投票

Here is my achievement
X = xlsread('testEffx.xlsx','x');
Y = xlsread('testEffx.xlsx','y');
Z = xlsread('testEffx.xlsx','z');
%%
[zm,im] = max(Z,[],2); % find max in each row (columns direction)
ix = sub2ind(size(Z),1:length(im),im'); % convert to index
surf(X,Y,Z)
hold on
plot3(X(im),Y,Z(ix),'.y')
hold off
axis vis3d

3 件のコメント

Asliddin Komilov
Asliddin Komilov 2020 年 3 月 5 日
編集済み: Asliddin Komilov 2020 年 3 月 5 日
thanks, but why its not a stright line? its not so beautiful anymore, please make the line stright.
darova
darova 2020 年 3 月 5 日
I used this program
Asliddin Komilov
Asliddin Komilov 2020 年 3 月 7 日
don't tell me you draw the line manually...))

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by