i have the following type of data X (96x1 double) Y (69x1 double) Z1 (1X6624 double) and Z2 (399x1 double).
How can I plot contour (X,Y,Z1) and contour(X,Y,Z2). I am having trouble plotting these

 採用された回答

Star Strider
Star Strider 2022 年 12 月 9 日

1 投票

Because the length of ‘Z1’ is thelength of the product of the lengths of ‘X’ and ‘Y’ it may simply be necessary to reshape it to create a matrix from it —
X = 1:96;
Y = 1:69;
Z1 = randn(1,6624);
Z1m = reshape(Z1,numel(Y),[]);
figure
contour(X, Y, Z1m)
colormap(turbo)
Z2 = 1:399;
Z2factors = factor(numel(Z2))
Z2factors = 1×3
3 7 19
However, that would not work for ‘Z2’ unless it also has vectors that could describe it similarly. There is simply not enough information about it to suggest an approach to plotting it.
.

2 件のコメント

SK
SK 2022 年 12 月 9 日
Thankyou! worked perfectely as for z2 turns out it had the same size as z1
Star Strider
Star Strider 2022 年 12 月 9 日
As always, my pleasure!
Thank you for clarifying.‘Z2’.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeContour Plots についてさらに検索

製品

リリース

R2021b

質問済み:

SK
2022 年 12 月 9 日

コメント済み:

2022 年 12 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by