mech-eng
- 825
- 13
Until now, I have always think of Matlab as CAS but now I know that it is not. So how do you understand this?
Thank you.
Thank you.
This discussion highlights the differences between Computer Algebra Systems (CAS) like Maple and numerical computing tools such as MATLAB. While MATLAB excels in numerical calculations and is favored by engineers for its efficiency in processing data, Maple is recognized for its robust capabilities in symbolic manipulation and solving differential equations. The conversation emphasizes that both tools serve distinct purposes, with MATLAB focusing on numerical simulations and Maple providing comprehensive symbolic solutions. Users should consider their specific needs when choosing between these software options.
PREREQUISITESEngineers, mathematicians, and students interested in numerical computing and symbolic mathematics will benefit from this discussion, particularly those evaluating the use of MATLAB versus Maple for their computational needs.
jedishrfu said:Matlab competes with Mathematica and it needs to have comparable features.
https://www.mathworks.com/matlabcentral/newsreader/view_thread/90063
jedishrfu said:Folks using CAS systems are interested in working from theory to the equations in a particular situation and CAS can help with the symbolic manipulation.
In contrast engineers want to get actual numbers and charts displayed to aid in analyzing a physical system.
They are coming at a problem from different angles and use symbolics or numerical simulations to get what they need.
jedishrfu said:Yes, many engineering problems start with taking measurements and making sense of them. As an example, you might measure the sound intensity in some environment and then use an FFT to determine the primary frequencies and then do some beam forming to find the direction of the sound source. Matlab works great for these kinds of numerical calculations.
If you're an engineer, you may have a lot of data to process and need not worry about having absolute precision. In that case, you can use numerical analysis and take advantage of your CPU(s) computational power. The truncation errors with numerical methods will hopefully be much smaller than the maximum error tolerance for your task. If you're an engineer, you want to use the most efficient method, i.e. minimizing the computational time while maintaining some control over the error variability.mech-eng said:I am not familiar with concepts here. Would you please explain why taking units is related to numerical computing but not symbolic? As I know them, numerical computing is better for some cases and vice versa. They are just approaches to obtain a calcuation results and numerical methods/calculation are such as Newton-raphson, bisection method and symbolic is calculus, taking a limit, taking a simple derivative or integral, again saying as I know them. I think numerical methods are harder from respect of both understand and application.
Thank you.