About 50 results
Open links in new tab
  1. What is MATLAB good for? Why is it so used by ... - Stack Overflow

    Oct 8, 2008 · Matlab was used in my Numerical Analysis course. Polynomial interpolation and least squares were a couple of the topics covered in that course if you want examples of what is in such a …

  2. How do you increase CPU usage to 100 percent in matlab?

    Jun 7, 2022 · There are two ways you can force MATLAB to use 100% of your CPU. You can increase the number of workers that MATLAB uses to match the number of logical cores you have You can …

  3. What is the default MATLAB Color Order? - Stack Overflow

    Oct 15, 2014 · 35 Good question! There is a default colour order for MATLAB. Take note that versions before R2014b, the default colour order for MATLAB uses the jet colour map. In the jet colour map, …

  4. parallel processing - Understanding MATLAB on multiple cores, …

    Nov 7, 2011 · You can also call out from Matlab to code in other languages, which can leverage multiple cores, processors, computers, etc. In the past, I have called R from Matlab, and have made use of …

  5. Why is MATLAB so fast in matrix multiplication? - Stack Overflow

    May 19, 2011 · Your Matlab uses the Intel MKL, which is a very good, optimized BLAS, and that explains the great performance you see. Technical details on Matrix multiplication: So why is Matlab …

  6. python - Comparing Matlab and Numpy code that uses random …

    May 15, 2014 · Comparing Matlab and Numpy code that uses random number generation Asked 12 years, 4 months ago Modified 11 years, 8 months ago Viewed 9k times

  7. Matlab parfor uses fewer cores than the allocated number of cores

    Jun 27, 2021 · I'm running a parallel Matlab job on a single node of a remote cluster. Each node of the cluster has 2 processors with 24 cores each, for a total of 48 cores per node. The job contains some …

  8. multithreading - Multi-threading in MATLAB - Stack Overflow

    Oct 10, 2016 · 20 I have read MATLAB's info on multi-threading and how it is in-built in certain functions. However, my requirement is different. Say, I have 3 functions: fun1 (data1), fun2 (data2), fun3 …

  9. math - Matlab Precision is only 8 digits? - Stack Overflow

    Apr 8, 2020 · By default, MATLAB® uses 16 digits of precision. this refers to computation precision, not the printing precision. By default, MATLAB defines variables as double, which usually is accurate up …

  10. matlab - Performance improvement for multiple uses of polyval …

    Oct 23, 2018 · I have a simple performance question on using polyval function with Matlab. Currently, I have a vector of x that can be quite long (>1000 scalars). I want to apply a different polynomial form …