photo

sunny


Last seen: 3 månader ago Active since 2024

Followers: 0   Following: 0

Statistics

All
  • First Answer
  • Solver

View badges

Feeds

View by

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]; ...

3 månader 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;

5 månader 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,:)=[];

5 månader ago | 0

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:...

6 månader ago