Programming Languages:
Python, C++, C, Java, MATLAB, Ruby, SQL, HTML, CSS, Shell, Perl
Spoken Languages:
English
Pronouns:
He/him
Python, C++, C, Java, MATLAB, Ruby, SQL, HTML, CSS, Shell, Perl
Spoken Languages:
English
Pronouns:
He/him
統計
All
Feeds
送信済み
SLF4M
A simple logging framework for Matlab, built on top of SLF4J and Log4j
4ヶ月 前 | ダウンロード 1 件 |
送信済み
Project Template for MATLAB
A template for creating repos for Matlab library and application projects
1年以上 前 | ダウンロード 3 件 |
回答済み
Why is the string type not implemented as standard type?
The older ways of representing arrays of strings have issues. Here's a whole blog post I wrote about it: http://blog.apjanke.net...
Why is the string type not implemented as standard type?
The older ways of representing arrays of strings have issues. Here's a whole blog post I wrote about it: http://blog.apjanke.net...
3年弱 前 | 1
回答済み
What should go in a next-generation MATLAB X?
I would like to see support for a more structured form of helptext, like Javadoc or Markdown, which could be used to produce ric...
What should go in a next-generation MATLAB X?
I would like to see support for a more structured form of helptext, like Javadoc or Markdown, which could be used to produce ric...
約3年 前 | 1
回答済み
What should go in a next-generation MATLAB X?
Remove the length function. Its behavior of "size along the longest dimension, picked at run time" is a little weird, most juni...
What should go in a next-generation MATLAB X?
Remove the length function. Its behavior of "size along the longest dimension, picked at run time" is a little weird, most juni...
約3年 前 | 9
回答済み
What should go in a next-generation MATLAB X?
Parallel array iteration! Let's say I've got some arrays in variables x, y, and z, with the same number of columns. I'd like t...
What should go in a next-generation MATLAB X?
Parallel array iteration! Let's say I've got some arrays in variables x, y, and z, with the same number of columns. I'd like t...
約3年 前 | 0
回答済み
What should go in a next-generation MATLAB X?
Convenience thing: The fieldnames function returns a string row vector, not a cellstr column vector, so you can loop over cell ...
What should go in a next-generation MATLAB X?
Convenience thing: The fieldnames function returns a string row vector, not a cellstr column vector, so you can loop over cell ...
約3年 前 | 0
回答済み
What should go in a next-generation MATLAB X?
Oh, here's one! Comments can begin with "#" in addition to "%". This would enable Octave compatibility. But I think that might...
What should go in a next-generation MATLAB X?
Oh, here's one! Comments can begin with "#" in addition to "%". This would enable Octave compatibility. But I think that might...
約3年 前 | 1
回答済み
Dual licensing in File Exchange - is it possible?
You are now allowed to get submissions with different license terms on to File Exchange if you publish your code to a GitHub rep...
Dual licensing in File Exchange - is it possible?
You are now allowed to get submissions with different license terms on to File Exchange if you publish your code to a GitHub rep...
約3年 前 | 0
回答済み
What should go in a next-generation MATLAB X?
A possibly radical one: Semicolons are no longer needed to suppress display of a statement's result. Instead, output is suppres...
What should go in a next-generation MATLAB X?
A possibly radical one: Semicolons are no longer needed to suppress display of a statement's result. Instead, output is suppres...
約3年 前 | 5
回答済み
What should go in a next-generation MATLAB X?
In MATLAB X, I would like to see: An object display customization API like Python's __str__ and __repr__. (`disp` isn't suitabl...
What should go in a next-generation MATLAB X?
In MATLAB X, I would like to see: An object display customization API like Python's __str__ and __repr__. (`disp` isn't suitabl...
約3年 前 | 5
質問
What should go in a next-generation MATLAB X?
Let's say MathWorks decides to create a MATLAB X release, which takes a big one-time breaking change that abandons back-compatib...
約3年 前 | 50 件の回答 | 11
50
回答回答済み
Who is using the MATLAB Discord channel?
All the time. I'm in the Matlab Discord more often than I'm in my own apartment.
Who is using the MATLAB Discord channel?
All the time. I'm in the Matlab Discord more often than I'm in my own apartment.
約3年 前 | 1
質問
Convenient handling of datetime function arguments and class properties
Hi folks, At work, we're in the process of adopting Matlab's new datetime type. We're on R2019b currently. Our code previously ...
4年弱 前 | 1 件の回答 | 1
1
回答回答済み
What frustrates you about MATLAB? #2
Here's my Matlab Gripes, 2020 Year End Edition. This is coming from the perspective of someone who's primarily a software engin...
What frustrates you about MATLAB? #2
Here's my Matlab Gripes, 2020 Year End Edition. This is coming from the perspective of someone who's primarily a software engin...
4年弱 前 | 0
解決済み
Number of Horns on a unicorn!
Calculate the number of horns on a *unicorn*! And I'm talking about a unicorn with not more than one horn on it!
約4年 前
解決済み
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
約4年 前
解決済み
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
Submit your answer to this problem a multiple of 5 seconds after the hour. Your answer is irrelevant; the only thing that matte...
約4年 前
解決済み
Rescale Scores
Each column (except last) of matrix |X| contains students' scores in a course assignment or a test. The last column has a weight...
約4年 前
回答済み
Close diary file on Error
The onCleanup function is what you want in modern Matlab. No try/catch to ugly up your code, and it's robust even against a dbqu...
Close diary file on Error
The onCleanup function is what you want in modern Matlab. No try/catch to ugly up your code, and it's robust even against a dbqu...
5年弱 前 | 2
回答済み
Trouble Using Abstract Class from .NET Assembly
You do not need to, and in fact cannot, directly instantiate this abstract class. That's what an abstract class is: a class with...
Trouble Using Abstract Class from .NET Assembly
You do not need to, and in fact cannot, directly instantiate this abstract class. That's what an abstract class is: a class with...
5年弱 前 | 0
回答済み
Changing format of a Struct
You should consider using a Matlab table array instead of a struct for cases like this. They're more suitable for data in this f...
Changing format of a Struct
You should consider using a Matlab table array instead of a struct for cases like this. They're more suitable for data in this f...
5年弱 前 | 0
回答済み
Abort external code process called by Matlab
There's no general mechanism for aborting a C# function call. The C# function has to be written specifically to support aborting...
Abort external code process called by Matlab
There's no general mechanism for aborting a C# function call. The C# function has to be written specifically to support aborting...
5年弱 前 | 0
回答済み
How to iterate through rows of a table, such that after each iteration some computation is done and then the below row is reached?
To iterate over the rows of a table, use height() to see how high your index should go: for iRow = 1:height(r) % ... do wo...
How to iterate through rows of a table, such that after each iteration some computation is done and then the below row is reached?
To iterate over the rows of a table, use height() to see how high your index should go: for iRow = 1:height(r) % ... do wo...
5年弱 前 | 0
回答済み
Error downloading .txt or .nc files through the ftp link
Geoff is right. You're passing a URL to ftp(), when it only accepts host names. You need to do the directory navigation and file...
Error downloading .txt or .nc files through the ftp link
Geoff is right. You're passing a URL to ftp(), when it only accepts host names. You need to do the directory navigation and file...
5年弱 前 | 1
回答済み
Changing the default Java TimeZone does not work with createConnectionForPool
Each of the workers in the Parallel Pool is a separate process with its own separate JVM. You need to run that java.util.TimeZon...
Changing the default Java TimeZone does not work with createConnectionForPool
Each of the workers in the Parallel Pool is a separate process with its own separate JVM. You need to run that java.util.TimeZon...
5年弱 前 | 0
回答済み
out of memory matlab runtime 2015b
Hard to say without knowing what operations your program is doing. But since you have a lot of free memory left, you might be ru...
out of memory matlab runtime 2015b
Hard to say without knowing what operations your program is doing. But since you have a lot of free memory left, you might be ru...
5年弱 前 | 1
回答済み
How to replace a string at specific line number in a text file?
Try this: Read in the whole text file Split it on \r?\n to break it in to lines Now you have an array of lines, so you can ed...
How to replace a string at specific line number in a text file?
Try this: Read in the whole text file Split it on \r?\n to break it in to lines Now you have an array of lines, so you can ed...
5年弱 前 | 1