Info

This question is closed. Reopen it to edit or answer.

参照番号付きスプリプ​ト内の番号指定ごとに​、多数のグラフを一つ​のグラフに重ね書きを​行う方法 

1 view (last 30 days)
Yoshifumi Harada
Yoshifumi Harada on 12 Apr 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
呼び出し参照番号付きスプリプトの番号指定ごとに、多数のグラフを一つのグラフに重ね書きを行う方法 
T =[26.533 26.574 26.614 26.729 26.838 26.970 27.14 27.92 28.90 29.92 31.80 34.53 42.57];
xz = csvread('TempCurve_data_0403_2019.csv');
xy=xz(:,9); al=xy; alpha =al; alphac =200.0; y=alpha/alphac;
F = csvread('FreqMaster_Single_f_data_0412_2019.csv'); zf =F(:,9);
FF= csvread('FreqMaster_Squaree_ff_data_0412_2019.csv'); zff =FF(:,9);
f =zf.*10^6; ff=zff.*10^12;
fc = 1.118752*10^11*((T- 26.50)./299.660).^1.90625;
fs =f./fc;
x =log(fs);
%plot(T, al)
plot(x, y,'-kh',...
'LineWidth',0.5,...
'MarkerEdgeColor','k ',...
'MarkerFaceColor','r ',...
'MarkerSize',7 )
  1 Comment
Kazuya
Kazuya on 15 Apr 2019
すいません、お困りの内容が何かが想像力が足りずわかりません。
グラフを書く方法だと思いますが、例えば「今の図」を表示してそこから具体的どう変えたいかなど説明していただけると、何かお手伝いできるかと思います。

Answers (0)

Community Treasure Hunt

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

Start Hunting!