photo

Jenny


2018 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

7 質問
0 回答

ランク
157,617
of 300,813

評判
0

コントリビューション
7 質問
0 回答

回答採用率
42.86%

獲得投票数
0

ランク
 of 21,086

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,169

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


How can I plot in the same coordinate system this two images that the execution of the two codes below gives?
function h = circle(x,y,r) % r is 30 hold on th = 0:pi/50:2*pi; xunit = r * cos(th) + x; yunit = r * sin(th) + y; h = plo...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


The code below generates random points inside a regular hexagon. I need the second coordinate y of the points to be an angle from 0:2pi. How can I modify the code please?
numEdges = 6; R = 8; xVertex = R * cos((0:6)*pi/3); yVertex = R * sin((0:6)*pi/3); xVertex = [xVertex , xVertex(1...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


How can I modify this code below to generate random points inside a regular hexagon and then get the points in a vector?
numEdges = 6; xv = rand(numEdges,1); yv = rand(numEdges,1); xv = [xv ; xv(1)]; yv = [yv ; yv(1)]; numPointsIn =...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


How can I modify the code to get the sensors with the positions that fulfill the conditions below?
function [Rhoc,Alfac,Rhoc2,Alfac2]= TheRightSensors(W,n,R) for i=1:n %R is the Radius of the disk where the se...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


How can I plot a series of points in a vector with two coordinates x&y considering that I want to name these points respectively S1, S2....S10, and I want to use them in other functions just by using their "name"?
I want to plot a series of points in a vector with two coordinates x&y and I want to name these points respectively S1, S2....S1...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


How can I modify the code below to build a hexagon knowing the coordinates of the hexagon roofs?
Function []=polygon (sides) sides=6; radians=(2*pi)./sides; r=ones(1,sides); theta=1:radians:2*pi; polar(theta,...

8年弱 前 | 1 件の回答 | 0

1

回答

質問


What does x=randint(1,1,[1,n]); ?
What does x=randint(1,1,[1,n]); ?

8年弱 前 | 4 件の回答 | 0

4

回答