photo

Oliver Woodford


Actif depuis 2011

Followers: 0   Following: 0

Message

Programming Languages:
Python, C++, C, MATLAB
Spoken Languages:
English

Statistiques

All
MATLAB Answers

33 Questions
112 Réponses

File Exchange

15 Fichiers

Cody

1 Problème
41 Solutions

ThingSpeak

4 Public Chaînes

Discussions

2 Points forts

RANG
229
of 300 788

RÉPUTATION
421

CONTRIBUTIONS
33 Questions
112 Réponses

ACCEPTATION DE VOS RÉPONSES
48.48%

VOTES REÇUS
208

RANG
106 of 21 091

RÉPUTATION
10 325

CLASSEMENT MOYEN
4.90

CONTRIBUTIONS
15 Fichiers

TÉLÉCHARGEMENTS
60

ALL TIME TÉLÉCHARGEMENTS
92725

RANG
11 217
of 171 083

CONTRIBUTIONS
1 Problème
41 Solutions

SCORE
565

NOMBRE DE BADGES
6

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
4 Public Chaînes

CLASSEMENT MOYEN
29

CONTRIBUTIONS
2 Points forts

NOMBRE MOYEN DE LIKES
15

  • Knowledgeable Level 3
  • 6 Month Streak
  • Likeable
  • Quiz Master
  • GitHub Submissions Level 3
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Thankful Level 3
  • Revival Level 2

Afficher les badges

Feeds

Réponse apportée
Managing RESTful web sessions using cookies in MATLAB
Instead of waiting for answers, I decided to write my own class to handle this. I also wrote a utility function to download publ...

environ 2 mois il y a | 0

| A accepté

Question


Managing RESTful web sessions using cookies in MATLAB
I'm trying to download a file from the web, programmatically in MATLAB. The issue I have is that the file requires some authenti...

environ 2 mois il y a | 1 réponse | 0

1

réponse

Réponse apportée
mex compilation failure after most recent macOS update
Based on comments to an answer to a similar question, I found adding the following to my mex invocation solved this issue: mex ...

2 mois il y a | 1

Réponse apportée
Apple's M1 native support
MATLAB R2022a still doesn't run natively on Apple silicon. The release notes say "On Apple silicon Macs, MATLAB runs using the R...

presque 4 ans il y a | 4

Réponse apportée
Exporting images (png) through export_fig - painfully slow
Reducing the level of anti-aliasing will reduce the sixe of the images created, saving time. Use the '-aX' option, where X is 1 ...

environ 4 ans il y a | 0

Réponse apportée
export_fig Transparency
The answer is in the help text you shared (you just want the axes color to be white, not none): fig = figure; plot(rand(5)) t...

environ 4 ans il y a | 0

Réponse apportée
Changing image rendering?
Basically you are rendering a binary image, and you're getting gray levels instead of just black and white? What are you using ...

plus de 5 ans il y a | 0

Question


When does an update to a function come into effect?
If I edit an existing function, and save the file, when does that change come into effect, in the following scenarios: Code is ...

presque 6 ans il y a | 1 réponse | 2

0

réponse

Réponse apportée
Matlab editor doubt - edit running code
In more recent versions of MATLAB, if you drag a file from a folder into the editor window, that file will open immediately, eve...

presque 6 ans il y a | 0

Question


How can I render points in 3D such that they correctly occlude each other
When I use plot3() to render points (using the OpenGL renderer, in hardware mode, with full hardware support), the occlusion of ...

plus de 6 ans il y a | 1 réponse | 0

0

réponse

Réponse apportée
How to display 70 128*128 images in Matlab from a mat file
The imdisp method in the <https://www.mathworks.com/matlabcentral/fileexchange/16233-sc-powerful-image-rendering sc> FEX submiss...

environ 7 ans il y a | 0

Réponse apportée
Plot 2D images in 3D scatter plot
h = surface(X, Y, Z, im, 'facecolor', 'texturemap', 'edgecolor', 'none'); alpha(h, 0.5); X, Y, and Z are each 2x2 matric...

environ 7 ans il y a | 1

| A accepté

Réponse apportée
Which standard MATLAB functions do you shadow with your own version, and why?
I shadow *bsxfun* with my own version, which calls the builtin function bsxfun for all inputs except symbolic ones, for which I ...

plus de 8 ans il y a | 0

Réponse apportée
Which standard MATLAB functions do you shadow with your own version, and why?
I shadow *dot* and *cross* with my own versions, which extend the standard functionality to allow for inputs which have <https:/...

plus de 8 ans il y a | 0

Question


Which standard MATLAB functions do you shadow with your own version, and why?
When you have two functions on your MATLAB path with the same name, the function in the directory higher up the path gets called...

plus de 8 ans il y a | 9 réponses | 0

9

réponses

Réponse apportée
How do *you* debug mex files on Mac OS
<https://www.mathworks.com/matlabcentral/answers/249023-debugging-c-mex-files-in-xcode-7-on-el-capitan#answer_197054 This> is ho...

environ 9 ans il y a | 0

Réponse apportée
Debugging C++ mex files in Xcode 7 on El Capitan
I have been able to hit a breakpoint in my mex code, within the Xcode IDE, by doing the following steps: # <https://www.mathw...

environ 9 ans il y a | 0

Réponse apportée
Debugging C++ mex files in Xcode 7 on El Capitan
I build the mex file as a command line project in Xcode, using the following custom build settings: <</matlabcentral/answers/...

environ 9 ans il y a | 0

Réponse apportée
Which MATLAB operations/functions need speeding up?
MATLAB has no documented functions for reading JSON files, and the internal, undocumented method: matlab.internal.webservic...

plus de 9 ans il y a | 0

Réponse apportée
How to calculate hash sum of a string (using java)?
A similar solution: %STRING2HASH Convert a string to a 64 char hex hash string (256 bit hash) % % hash = string2has...

plus de 9 ans il y a | 1

Réponse apportée
How to compute the hash of a string using SHA algorithms
The Java-based solution can be found <http://uk.mathworks.com/matlabcentral/answers/45323-how-to-calculate-hash-sum-of-a-string-...

plus de 9 ans il y a | 2

Question


How can I access an API which requires OAuth 2.0 authorization, such as Google APIs
Some REST APIs, such as <https://developers.google.com/analytics/devguides/reporting/core/v3/gdataAuthorization Google Analytics...

presque 10 ans il y a | 2 réponses | 0

2

réponses

Réponse apportée
Returning and passing void pointers to mex functions
Whilst you are not interfacing to a C++ class, much of a similar discussion on how to reuse a pointer to a C++ class is relevant...

environ 10 ans il y a | 1

Réponse apportée
How to prevent Matlab from GPU switching on Macbook Pro?
If you don't need the desktop, then you can run the command window only version of MATLAB by calling the following in a terminal...

environ 10 ans il y a | 0

Réponse apportée
Which MATLAB operations/functions need speeding up?
Matrix operations involving the transpose of a sparse matrix, especially J' * J and J' * K, where J is a very tall matrix. Const...

environ 10 ans il y a | 0

Réponse apportée
Are the values in each compressed column of a sparse matrix stored in order?
Since it is possible to write the column data in any order from a mex file, I would say *no*. However, I tried three methods ...

environ 10 ans il y a | 0

Question


Are the values in each compressed column of a sparse matrix stored in order?
If I have a sparse column vector (e.g. a column of a sparse matrix), and I'm accessing the elements of that vector in a mex file...

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


Debugging C++ mex files in Xcode 7 on El Capitan
I have just migrated to MAC OS, and am trying to debug a mex file for the first time. I'm using MATLAB R2015b and Xcode 7.0.1 on...

environ 10 ans il y a | 2 réponses | 1

2

réponses

Question


How do *you* debug mex files on Mac OS
I'm having trouble <http://uk.mathworks.com/matlabcentral/answers/249023-debugging-c-mex-files-in-xcode-7-on-el-capitan debuggin...

environ 10 ans il y a | 2 réponses | 2

2

réponses

Réponse apportée
imagesc() Y Axis Log Scale Not Working (Help!)
If you want to avoid pcolor, you can resample the image at the log scale locations, then use imagesc to display that.

plus de 10 ans il y a | 0

Charger plus