photo

John Billingham


University of Nottingham

Last seen: 20 Tage vor Aktiv seit 2014

Followers: 0   Following: 0

Nachricht

Professor of Theoretical Mechanics School of Mathematical Sciences The University of Nottingham UK Professional Interests: Scientific computing

Statistik

All
MATLAB Answers

11 Fragen
0 Antworten

Cody

0 Probleme
1 Lösung

RANG
12.909
of 300.813

REPUTATION
4

BEITRÄGE
11 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
72.73%

ERHALTENE STIMMEN
4

RANG
 of 21.086

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
113.918
of 171.169

BEITRÄGE
0 Probleme
1 Lösung

PUNKTESTAND
20

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 3
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Why does fmincon using the sqp algorithm need a full matrix to specify linear constraints?
I need to specify that some of the variables in my optimization need to be ordered, so v_i-v_(i+1)<0 for i = N_1 to N_2. This ...

fast 3 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


Spline with clamped end conditions using griddedInterpolant
I can create a piecewise polynomial spline with clamped end conditions from vectors x and y using pp = spline(x,[dy1 y dy2]) ...

etwa 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How can I clear persistent variables from a function using only its handle?
For example, say I have a simple function, _test1_, function test1 = test1(x,y) persistent k if isempty(k), k = sum(y); e...

mehr als 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How can I create an ordinary floating point function from a symbolic array
If I have some code that generates a symbolic array, I'd like to be able to turn it into a function that takes floating point in...

mehr als 8 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

fast 10 Jahre vor

Frage


How can I use zlib in a C mex file and use gz compression?
I need to use zlib to do gz compression within a C mex file. Something like #include < zlib.h > gzFile fi = gzopen(f...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How can I convert individual guis into a single tabbed gui?
I have a gui that pops up another gui when a button is pressed. I'd like to convert this into a single gui with two tabs. Can an...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Accessing a cell array of cell arrays in a C++ mex file
I'm writing a large code that requires me to use a cell array of cell arrays of single precision real matrices. This may seem od...

mehr als 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Problem with simplify(x^(1/log(x)).
>> sym x; >> assume(x>0) >> simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true) >> ans = x^(1/log(x)) Note that x^(1/...

mehr als 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Struggling to distribute a cell array across several parallel workers
I have some code, part of which a structure of the form below. for a = 1:A for b = 1:B for c = 1:C f...

mehr als 11 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Finding parfor baffling: Can anybody explain to me why this little bit of code works with for,but not with parfor?
function B = partest A = 1:4; B = zeros(1,4); parfor j=1:2 B([j j+2]) = A([j+2 j]); end The...

mehr als 11 Jahre vor | 2 Antworten | 2

2

Antworten