Generate a plot of C vs d. and make a table

1 Kommentar

Rik
Rik am 26 Sep. 2019
You are approaching the level where I would consider this spam. Please follow the advice here and here.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Bruno Teramoto
Bruno Teramoto am 26 Sep. 2019

0 Stimmen

L = 1;
r = 0.01;
per = 8.854*10^-12;
d = linspace(0.01,0.03,10)';
C = pi*per*L./log((d-r)/r);
fprintf('***********************\n')
fprintf(' d C\n')
fprintf('***********************\n')
for i = 1:length(d)
fprintf('%8.3f %11.2e\n',d(i),C(i))
end
fprintf('***********************\n')
plot(d,C)

1 Kommentar

James Tursa
James Tursa am 26 Sep. 2019
Please don't post complete answers to homework questions.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 26 Sep. 2019

Kommentiert:

am 26 Sep. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by