Michael Croucher
Followers: 0 Following: 0
Statistics
RANK
919
of 295.569
REPUTATION
80
CONTRIBUTIONS
1 Question
20 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
10
RANK
of 20.247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Is there any work around the error "Array concatenation is not supported"?
As Joss said, what you want to do is outside the scope of what arrayfun can do but all is not lost if what you want is speed-up ...
ongeveer 4 jaar ago | 0
How to format matrix to 4 decimal places in engineering notation:
There are only a limited number of supported formats that apply automatically to all output. The closest to what you want is sh...
ongeveer 4 jaar ago | 0
HPC with Matlab no performance improvement
This is a huge topic which has entire Master's level courses devoted to it but I'll try to give an oversimplifed view. TL;DR ...
ongeveer 4 jaar ago | 3
| accepted
For loop only running through the first file and not all files?
How about something like this? path = './'; %just the path to the directory finaldata = []; for year = 1979:2015 for ...
ongeveer 4 jaar ago | 0
| accepted
Question
Variable precision arithmetic in ode45 and others?
Is it possible to use vpa in ordinary differential equation solvers like ode45?
ongeveer 4 jaar ago | 3 answers | 0
3
answersRandom numbers from CDF
You can pass your pd to the random function. Does this do what you want? To get a 100000 by 1 vector of random numbers from yo...
ongeveer 4 jaar ago | 0
| accepted
Can I schedule a job in Matlab online
One way of achieving your aim would be to use the public cloud. Compile your .m file using MATLAB Compiler, install it on a clo...
ongeveer 4 jaar ago | 0
stl export for geometry from pointcloud/array
I should start this answer with 'I have no idea what I'm doing here'. I found your question interesting and have had a go at it...
ongeveer 4 jaar ago | 0
| accepted
How do I write a 3D matrix to a file, and then read it back in?
I haven't played with the matfile function in this way before so tried a little experiment that may also serve to help you use t...
ongeveer 4 jaar ago | 2
Compiling matlab code for the cluster
You need to compile on a Linux machine. You may find that you can compile on the cluster in question -- something to check with...
ongeveer 4 jaar ago | 1
Path between 2 nodes in a graph
One way to proceed would be to use concomp. Take this example graph s = [1 2 2 3 3 3 4 5 5 5 8 8]; t = [2 3 4 1 4 5 5 3 6 7 9...
ongeveer 4 jaar ago | 0
| accepted
No print contents in slurm.out files
I can't test this as I don't currently have access to a SLURM cluster with MATLAB on it. I guess you submit jobs using the sbat...
ongeveer 4 jaar ago | 0
| accepted
How to insert multiple spreadsheets to a workbook from Matlab
You can add the number of sheets as an extra argument. So, for 5 sheets: eNewSheet = Add(eSheets,[],eSheet1,5);
ongeveer 4 jaar ago | 0
| accepted
How to import symbolic expressions from Python to MATLAB?
Imagine your friend had a Python function that created that expression. Let's call it create_symbolic_expression() and put it i...
ongeveer 4 jaar ago | 2
| accepted
Import excel data from web doesn't work
The main issue is that MATLAB doesn't recognise what Sheet name within that spreadsheet that you want to import. This gets you ...
ongeveer 4 jaar ago | 0
| accepted
fmincon optimization in matlab using OutputFcn
Following the advice at https://uk.mathworks.com/help/matlab/math/output-functions.html, we can use the 'OutputFcn' option. By ...
ongeveer 4 jaar ago | 0
| accepted
fsolve options generate different results
We can learn a little more by asking for more output from fsolve [x,~,~,output_no_options] = fsolve(fun,x0); opts = optimopt...
ongeveer 4 jaar ago | 0
| accepted
How to get convergence in Gradient descent algorithm?
Here's my MATLAB port of that code data=dlmread('data.csv'); X = data(:,1); Y = data(:,2); %Building the model m = 0; c ...
ongeveer 4 jaar ago | 1
| accepted
Unary operator '-' is not supported for operand of type 'function_handle' in for loop function
You have defined D as a function but in line 36 you are not using it as a function. You have defined it as a function of a vari...
ongeveer 4 jaar ago | 1
| accepted
What is the meaning of [0.0;-1.5] in the following lines?
[0.0;-1.5] is a column vector with the two values 0.0 and -1.5. Mathematically, it looks like this:
meer dan 4 jaar ago | 0
| accepted
Mex and digraph in C++
I discovered this thread while googling for the same question as Lightonz. It appears there is a way to do this now using matl...
meer dan 4 jaar ago | 0