photo

Wesley Lei


Last seen: 3 years ago Active since 2022

Followers: 0   Following: 0

Statistics

MATLAB Answers

9 Questions
0 Answers

RANK
262,890
of 300,886

REPUTATION
0

CONTRIBUTIONS
9 Questions
0 Answers

ANSWER ACCEPTANCE
66.67%

VOTES RECEIVED
0

RANK
 of 21,104

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 171,502

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 3
  • Thankful Level 2

View badges

Feeds

View by

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer

1

answer

Question


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 ago | 3 answers | 0

3

answers

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 0 answers | 0

0

answers

Question


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 ago | 1 answer | 0

1

answer

Question


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 ago | 1 answer | 0

1

answer