Programming Languages:
Python, C++, C, MATLAB
Spoken Languages:
English
Python, C++, C, MATLAB
Spoken Languages:
English
Feeds
제출됨
Example MATLAB class wrapper for a C++ class
An example of how to safely encapsulate a C++ class in a MATLAB class, via a mex interface.
거의 2년 전 | 다운로드 수: 10 |
답변 있음
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...
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...
2년 초과 전 | 4
문제를 풀었습니다
Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...
대략 3년 전
문제를 풀었습니다
Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...
대략 3년 전
답변 있음
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 ...
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 ...
대략 3년 전 | 0
답변 있음
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...
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...
대략 3년 전 | 0
답변 있음
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 ...
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 ...
대략 4년 전 | 0
제출됨
Batch Job
Toolbox to spread batch work over multiple MATLAB instances, even on other PCs
4년 초과 전 | 다운로드 수: 4 |
제출됨
SC - powerful image rendering
Useful tool for rendering and outputting information rich images
4년 초과 전 | 다운로드 수: 10 |
질문
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 ...
4년 초과 전 | 답변 수: 0 | 2
0
답변답변 있음
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...
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...
4년 초과 전 | 0
질문
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 ...
5년 초과 전 | 답변 수: 0 | 0
0
답변답변 있음
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...
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...
대략 6년 전 | 0
문제를 풀었습니다
expand intervals
You're given a row vector of an even number of monotonically increasing integers. Each pair of consecutive integers is the lower...
대략 6년 전
답변 있음
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...
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...
대략 6년 전 | 1
| 수락됨
제출됨
Image Alignment Demo with several goodies: Lie algebra, auto differentiation...
Demonstration of gradient-based image alignment, including some nice tricks and handy software
6년 초과 전 | 다운로드 수: 1 |
답변 있음
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 ...
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 ...
7년 초과 전 | 0
답변 있음
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:/...
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:/...
7년 초과 전 | 0
질문
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...
7년 초과 전 | 답변 수: 9 | 0
9
답변제출됨
C++ JSON IO
Mex wrapper to C++ class for fast reading and writing of JSON files
7년 초과 전 | 다운로드 수: 4 |
제출됨
Tensor matrix multiply
Matrix multiplication over tensor arrays (i.e. arrays of matrices), with matrix transposition.
7년 초과 전 | 다운로드 수: 2 |
답변 있음
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...
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...
대략 8년 전 | 0
답변 있음
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...
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...
대략 8년 전 | 0
답변 있음
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/...
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/...
대략 8년 전 | 0
답변 있음
Which MATLAB operations/functions need speeding up?
MATLAB has no documented functions for reading JSON files, and the internal, undocumented method: matlab.internal.webservic...
Which MATLAB operations/functions need speeding up?
MATLAB has no documented functions for reading JSON files, and the internal, undocumented method: matlab.internal.webservic...
대략 8년 전 | 0
문제를 풀었습니다
Index one element in each vector of an array along a given dimension
Functions like min and max can return in their second output argument the index of the element in each vector along a particular...
8년 초과 전
답변 있음
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-...
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-...
8년 초과 전 | 1