- データインポートツールで枠線をマウスで選択してインポートします
- 読み込んだデータの変数はワークスペースにリストアップされます
- 出力タイプを「数値行列」にする
- マウスで枠線部(3か所)を選択する(作業を3回繰り返します)
- 選択したら「選択のインポート」をクリックする
- ワークスペースに現れた変数名をuntitledからx等に変更する
X,Yに定義する
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
初歩的な質問だと思うのですが、CSVのファイルを読み込むんで、x,yを定義する方法が分からないです。
宜しくお願いします。
0 commentaires
Réponse acceptée
Atsushi Ueno
le 31 Mai 2023
>x,yを定義する方法が分からないです
データのプロットもマウス操作で出来ますが、下記ではプログラムでグラフ描画しています。
n = 20;
x = 1:n;
y = (1:n)'; % 赤枠部(x)と緑枠部(y)の模擬データ
z = rand(n) + 10.0; % 黄色枠部(z)の模擬データ
[X,Y] = meshgrid(x,y);
surf(X,Y,z);
zlim([0 20]);
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!