Question


How can I remove parentheses in a symbolic expression and perform the operations for the coefficients?
I cannot use parentheses and / operations in my code because PHClab can't interpret them. So I need to remove them. How can I ma...

12 years ago | 1 answer | 0

1

answer

Solved


Who knows the last digit of pi?
There is only one man who knows the last digit of pi, who is that man? Give the name of that man, who, by popular believe, can ...

12 years ago

Solved


Arrange vector in ascending order
Arrange a given vector in ascending order. input = [4 5 1 2 9]; output = [1 2 4 5 9];

12 years ago

Submitted


Phase Plane Analysis
GUI for visualizing the direction field of two coupled first order nonlinear differential equations

12 years ago | 1 download |

0.0 / 5
Thumbnail

Solved


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

12 years ago

Solved


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

12 years ago

Solved


radius of a spherical planet
you just measured its surface area, that is the input.

12 years ago

Solved


Right and wrong
Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: <http://en.wikipe...

12 years ago

Solved


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

12 years ago

Solved


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

12 years ago

Solved


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

12 years ago

Solved


Back to basics 6 - Column Vector
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector, output true or false whether it is a colu...

12 years ago

Solved


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

12 years ago

Solved


Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next. Example input: x = [10 2];

12 years ago

Solved


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

12 years ago

Solved


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

12 years ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

12 years ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

12 years ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

12 years ago

Question


ButtonDownFcn does not work
I am making a gui, but I can not make use of line 31: set(S.canvas, 'ButtonDownFcn',{@selectedtile,S}); If I am within t...

12 years ago | 1 answer | 0

1

answer

Solved


Add two numbers
Calculate the sum of two numbers. Example input = [2 3] output = 5

12 years ago

Question


Double precision limit with norm
I wrote a Taylor series approach for calculating the natural logarithm of matrix A. When I compared my result with the built-in ...

12 years ago | 1 answer | 0

1

answer

Question


MATLAB inverts colors in uicontrol objects
I wrote a GUI application but my problem is that when I save the figure programatically using the saveas command, colors of the ...

12 years ago | 0 answers | 0

0

answers

Solved


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

12 years ago

Question


How to obtain a warning message?
I would like to extract the warning message, that a function throws. For example syms x solve(sin(1/sqrt(x))) generat...

12 years ago | 1 answer | 0

1

answer

Question


Overwrite the function handle with a newer state?
I am currently learning from Matt Fig's 41 GUIs. What I do not understand is why he writes this line: set(ln,'buttondownfcn',{@a...

12 years ago | 1 answer | 0

1

answer

Question


How to pass handle without using nested functions?
I want to make a simple GUI programatically. Here is what I have done so far. function main % Initialize figure and...

12 years ago | 1 answer | 0

1

answer

Solved


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

13 years ago

Solved


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

13 years ago

Solved


Is my wife right? Now with even more wrong husband
Again, as in "Is my wife right?" ( <http://www.mathworks.com/matlabcentral/cody/problems/149-is-my-wife-right> ), answer 'yes' r...

13 years ago

Load more