photo

Wesley Lei


Last seen: 3 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

9 个提问
0 个回答

排名
113,103
of 301,973

声誉
0

贡献数
9 个提问
0 个回答

回答接受率
66.67%

收到投票数
0

排名
 of 21,476

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 177,809

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3
  • Thankful Level 2

查看徽章

Feeds

排序方式:

提问


working on a simple vector addition but every result in the loop shows up, even after i allocate memory. can someone please help me out? thanks a lot
A = [7 21 30 40]; B = [11 4 14 6]; [rows, columns] = size(A); D = zeros(1,rows); for i = 1:rows for j = 1:columns ...

4 years 前 | 1 个回答 | 0

1

个回答

提问


hi my assignment requires product of all diagonal elements, i did a simply look as copied below, but could only pass the test on one case and failed all others. can you please
shed some light on what I'm doing wrong? much appreciated. dU = 1; for i = 1:n dU = dU*U(i,i); end

4 years 前 | 1 个回答 | 0

1

个回答

1

个回答

提问


hello, I'm supposed to check if the matrix is square if not, disp a message. when i used [n,m]=size(A), if n~=m, disp, it seems to work; if i use [n,n]=size(A),
can you please tell me what's wrong in below and how to use [n,n]=size(A) properly? silly question but you can tell i'm new. Tha...

4 years 前 | 3 个回答 | 0

3

个回答

提问


hello, i'm working on following assignment. it works and gets the correct roots, but i'm supposed to set up inputs a and b as an array containing initial bracket,
so i [can't pass the test code my prof set up which inputs a and b as [a,b]. ' ... 'Can you please kindly explain how i can...

4 years 前 | 1 个回答 | 0

1

个回答

提问


Dear experts out there, I'm using an online version of matlab. when i try to run a function, it keeps freezing and I see below message at the bottom.
Message: "2 usages of 'y1' found". Is the freezing related to this error message? if so, how can i clear it? Thank you in adv...

4 years 前 | 0 个回答 | 0

0

个回答

提问


I'm trying to plot a 3D. Seems simple but it keeps telling me "related documentation" error. Am I copying the functions in the wrong way? appreciate the hlep.
t = 0:0.1:20; x = (10 + 4.* sin(t)) *cos(t); y = (20 + 4.* sin(t)) *sin(t); z = 5.*exp(-0.2*t); plot3(x,y,z)

4 years 前 | 1 个回答 | 0

1

个回答

提问


Hi I'm trying to plot using a for loop. don't see syntax errors but plot comes out empty. appreciate your guidance.
for t = 0:30/100:30 y1 = 6*exp(-0.2)*t*sin(7*t+3); y2 = 4*exp(-0.1)*t*sin(3*t-1); end plot(y1,t); hold on; plot(y2,t); ...

4 years 前 | 1 个回答 | 0

1

个回答