Can you help with this?

조회 수: 1 (최근 30일)
Yigit Baran Aydin
Yigit Baran Aydin 2020년 5월 9일
댓글: Rena Berman 2020년 5월 14일
There are n point charges in the system and the electrostatic charges of the points are as in the figure. The positions of the points are also shown.
Write a MATLAB script that assigns the loads to the points as shown in the illustration.
Write a MATLAB script that assigns the positions of the points.
  댓글 수: 2
Stephen23
Stephen23 2020년 5월 12일
Original question from Yigit Baran Aydin, recovered from Google Cache:
Can you help with this?
There are n point charges in the system and the electrostatic charges of the points are as in the figure. The positions of the points are also shown.
Write a MATLAB script that assigns the loads to the points as shown in the illustration.
Write a MATLAB script that assigns the positions of the points.
Rena Berman
Rena Berman 2020년 5월 14일
(Answers Dev) Restored edit

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2020년 5월 9일
Try plot() and text(). Here's a start
plot(x, y, 'r.', 'MarkerSize', 50); % or 'k.' for black.
grid on;
caption = sprintf('(%d, %d, %d)', x, x, x);
text(x, y+ 0.2, caption

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by