sunny
Followers: 0 Following: 0
Feeds
已解决
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...
2 months 前
已解决
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:...
2 months 前
已解决
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]; ...
7 months 前
已回答
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;
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;
9 months 前 | 0
已回答
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,:)=[];
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,:)=[];
10 months 前 | 0