photo

sunny


Last seen: 3 months ago Active since 2024

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
2 Answers

Cody

0 Problems
3 Solutions

RANK
195,414
of 297,457

REPUTATION
0

CONTRIBUTIONS
0 Questions
2 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
74,024
of 158,938

CONTRIBUTIONS
0 Problems
3 Solutions

SCORE
40

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Answer
  • Solver

View badges

Feeds

View by

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5 months ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 months ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...

10 months ago

Answered
plotting a simple constant
x =1:.5:10; y = x.*4; Z = 4; m=5:.5:14; n=m-x; plot(x,y,'blue'); hold on plot (x,n,'red'); hold off;

1 year ago | 0

Answered
How can i extract sub matrix from basic matrix
B=[-1,1,1,5+1i*2;0,-1,0,20+1i*10;0,0,-1,10+1i*3;1,0,0,0;30+1i*30,50+1i*50,60+1i*60,0]; B(:,end)=[]; B(end,:)=[];

1 year ago | 0