The problem statement clearly states to use mldivide (\)
How can the leading solution be cos(theta)+sin(theta)*[-1;1]
My code is working perfectly on my desktop Matlab version, but here it's not accepting and displaying as incorrect..anyone help me out!
The syms function is in a toolbox—Cody does not currently support any toolbox functions.
It is tricky problem.
A=[cos(theta) sin(theta); -sin(theta) cos(theta)]; % coefficients of X1 and X2
b=[1;1] % It is a column vector
What is this? I don't even understand the question?
The answer is:
A=[cos(theta) sin(theta); -sin(theta) cos(theta)]; % coefficients of X1 and X2
b=[1;1] % It is a column vector
how tf do u do this
whats wrong with this problem, it runs perfectly on my matlab.
Developers guys, you should fix this problem
function x = solve_lin(theta)
A=[cos(theta) sin(theta); -sin(theta) cos(theta)];
b=[1; 1];
x=linsolve(A,b);
end
Good job!!!
lol
3114 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
226 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!