フィルターのクリア

I want to plot a 2D matrix with a color contrast.

83 ビュー (過去 30 日間)
Anshuman S
Anshuman S 2018 年 6 月 18 日
コメント済み: Walter Roberson 2018 年 6 月 18 日
I've got a spreadsheet ( 2-D matrix ) which has got temperature readings of various points on a 2-D plane. How can I plot a color variation temp. profile plot for this matrix.
I have uploaded the csv file.

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 6 月 18 日
Several possibilities:
imagesc(data)
contour(data)
contourf(data)
pcolor(data)
surf(data, 'edgecolor', 'none'); view(2);
  5 件のコメント
Anshuman S
Anshuman S 2018 年 6 月 18 日
Thanks ! May you tell me about the theory for this !
Walter Roberson
Walter Roberson 2018 年 6 月 18 日
When you have a table, then using {} indexing on it extracts values from the table into ordinary arrays.
You should probably have asked for selected output type as numeric array instead of table for this data, as it is a 2D array of data instead of being columns of data each with a different meaning.

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

カテゴリ

Help Center および File ExchangeOther Formats についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by