Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 7 Jahre vor

Gelöst


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

mehr als 7 Jahre vor

Gelöst


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

mehr als 7 Jahre vor

Beantwortet
How do I plot a circular arc with given two endpoints and radius?
%first input a=[0 1]; %P1 b=[1 0]; %P2 r=1; %radius %next solution syms x y [x,y]=solve((x-a(1))^2+(y-a(...

mehr als 8 Jahre vor | 1