Problem 505. Back to basics 24 - Symbolic variables

Created by Alan Chalker

Covering some basic topics I haven't seen elsewhere on Cody.

Given a string algebraic expression, return the symbolic variables as a cell array of strings.

Example:

Input: 'cos(pi*x - beta1)'
Output: {'beta'; 'x'}

Problem Group

43 solvers submitted 58 solutions (1.35 solutions/solver).

Problem Comments