統計
All
MATLAB Answers
File Exchange
8 ファイル
Cody Blogs226 投稿
ThingSpeakコントリビューション
226 投稿
コントリビューション
2 パブリック チャネル
平均評価
68
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How to get data from web?
URLREAD expects US-style usage of commas and stops in numbers. So in a number like 150,228.17 it will ignore the comma and retur...
How to get data from web?
URLREAD expects US-style usage of commas and stops in numbers. So in a number like 150,228.17 it will ignore the comma and retur...
8年弱 前 | 0
| 採用済み
回答済み
Is it legal to publish the source code of Matlab's toolbox functions?
In general, just keep in mind that it’s not okay to take code from MathWorks products and give it away, whether through MATLAB A...
Is it legal to publish the source code of Matlab's toolbox functions?
In general, just keep in mind that it’s not okay to take code from MathWorks products and give it away, whether through MATLAB A...
約8年 前 | 11
| 採用済み
質問
How to import Excel data from a spreadsheet with cross-file references?
I have an Excel spreadsheet, call it Spreadsheet A, that I want to read into MATLAB. The Import Tool works well for this. Exc...
9年以上 前 | 2 件の回答 | 0
2
回答回答済み
regular expressions resources and regular expression problem
Another way to get good at regular expressions is to practice on Cody with <http://www.mathworks.com/matlabcentral/cody/?term=ta...
regular expressions resources and regular expression problem
Another way to get good at regular expressions is to practice on Cody with <http://www.mathworks.com/matlabcentral/cody/?term=ta...
12年弱 前 | 1
回答済み
Single title spanning a nxn subplot
You might want to try <http://www.mathworks.com/matlabcentral/fileexchange/7772-suplabel suplabel> from the File Exchange.
Single title spanning a nxn subplot
You might want to try <http://www.mathworks.com/matlabcentral/fileexchange/7772-suplabel suplabel> from the File Exchange.
12年以上 前 | 0
| 採用済み
回答済み
Function to format number as currency?
Using SPRINTF is the way to go, but getting the commas right is tricky. I turned this into a question for Cody to see what folks...
Function to format number as currency?
Using SPRINTF is the way to go, but getting the commas right is tricky. I turned this into a question for Cody to see what folks...
13年弱 前 | 1
回答済み
How to separate this DNA sequence?
Here's a simple way to chunk your DNA up into codons. Then you can just pull the rows off to get each triplet. >> sequence =...
How to separate this DNA sequence?
Here's a simple way to chunk your DNA up into codons. Then you can just pull the rows off to get each triplet. >> sequence =...
約13年 前 | 2
| 採用済み
回答済み
Miller Cylindrical Projection
One option is to use the <http://www.mathworks.com/products/mapping/ Mapping Toolbox>, which has a function to do exactly this p...
Miller Cylindrical Projection
One option is to use the <http://www.mathworks.com/products/mapping/ Mapping Toolbox>, which has a function to do exactly this p...
約13年 前 | 0
回答済み
How do I get a parameter to resolve when following the '%%' section header definer while using 'publish' command?
Publishing using cell mode markup doesn't permit passing parameters in the way you describe. Section heads can't contain paramet...
How do I get a parameter to resolve when following the '%%' section header definer while using 'publish' command?
Publishing using cell mode markup doesn't permit passing parameters in the way you describe. Section heads can't contain paramet...
13年以上 前 | 0
回答済み
getting the variable size value
To find the size, use <http://www.mathworks.com/help/matlab/ref/size.html |size|>. [m,n] = size(X) m = size(X,dim) So t...
getting the variable size value
To find the size, use <http://www.mathworks.com/help/matlab/ref/size.html |size|>. [m,n] = size(X) m = size(X,dim) So t...
13年以上 前 | 0
回答済み
Colouring stacked bar chart
Try Brandon Levey's <http://www.mathworks.com/matlabcentral/fileexchange/24021-hatch-fill-patterns-plus-color-invert Hatch fill ...
Colouring stacked bar chart
Try Brandon Levey's <http://www.mathworks.com/matlabcentral/fileexchange/24021-hatch-fill-patterns-plus-color-invert Hatch fill ...
14年弱 前 | 0
| 採用済み
回答済み
Passing data between two different GUI windows
Here's a tricky non-Guide way to do it. Change the data in the text box and press return to plot the data in figure 2. % Ma...
Passing data between two different GUI windows
Here's a tricky non-Guide way to do it. Change the data in the text box and press return to plot the data in figure 2. % Ma...
14年弱 前 | 0
回答済み
Can one suppress the display of dataset objects triggered by mouseover (datatips)?
Mike's blog may be of service here: <http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/ Exploring ...
Can one suppress the display of dataset objects triggered by mouseover (datatips)?
Mike's blog may be of service here: <http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/ Exploring ...
14年弱 前 | 0
回答済み
Decreasing scale on graphs
Is this what you're looking for? plot(Times,TDCall) set(gca,'XDir','reverse')
Decreasing scale on graphs
Is this what you're looking for? plot(Times,TDCall) set(gca,'XDir','reverse')
約14年 前 | 0
回答済み
How do I read Text from HTML file ?
Try something like this: url = 'http://www.example.com/'; html = urlread(url); % Use regular expressions to remove undesi...
How do I read Text from HTML file ?
Try something like this: url = 'http://www.example.com/'; html = urlread(url); % Use regular expressions to remove undesi...
約14年 前 | 10
| 採用済み
回答済み
How to implement a neural network feedforward backpropagation network?
A quick Google search turned up this MATLAB-based approach: <http://alumni.media.mit.edu/~faaborg/research/cornell/hci_neuralnet...
How to implement a neural network feedforward backpropagation network?
A quick Google search turned up this MATLAB-based approach: <http://alumni.media.mit.edu/~faaborg/research/cornell/hci_neuralnet...
約14年 前 | 0
質問
How do I write a good question for MATLAB Answers?
I want to get fast and accurate help with my question. What information should I include in the question? How should I phras...
約14年 前 | 5 件の回答 | 12
5
回答回答済み
Shortest Path
<http://www.mathworks.com/matlabcentral/fileexchange/?dir=desc&sort=downloads&term=authorid:90537 Joseph Kirk> has some files on...
Shortest Path
<http://www.mathworks.com/matlabcentral/fileexchange/?dir=desc&sort=downloads&term=authorid:90537 Joseph Kirk> has some files on...
約14年 前 | 0
回答済み
Simple example which explains contour plotting
Try these pages in the documentation for <http://www.mathworks.com/help/techdoc/creating_plots/f10-2524.html contour>.
Simple example which explains contour plotting
Try these pages in the documentation for <http://www.mathworks.com/help/techdoc/creating_plots/f10-2524.html contour>.
約14年 前 | 0
回答済み
Can we "Watch" Answers?
Take a look at Randy's answer to this question: <http://www.mathworks.com/matlabcentral/answers/233-does-matlab-answers-provide-...
Can we "Watch" Answers?
Take a look at Randy's answer to this question: <http://www.mathworks.com/matlabcentral/answers/233-does-matlab-answers-provide-...
約14年 前 | 2
回答済み
Eigenvector calculation
When I run the eig command (see help here: <http://www.mathworks.com/help/matlab/ref/eig.html eig>) I don't get any complex eige...
Eigenvector calculation
When I run the eig command (see help here: <http://www.mathworks.com/help/matlab/ref/eig.html eig>) I don't get any complex eige...
約14年 前 | 0
| 採用済み
回答済み
How do I remove the empty cells from a vector of cells?
Here's one way to do it. strs = {'one','','two','three','','','four',''}; empties = find(cellfun(@isempty,strs)); % ...
How do I remove the empty cells from a vector of cells?
Here's one way to do it. strs = {'one','','two','three','','','four',''}; empties = find(cellfun(@isempty,strs)); % ...
約14年 前 | 3
質問
How do I remove the empty cells from a vector of cells?
I have a vector of cells which contain strings. Some of the cells in the vector are empty. I want to remove the empty cells from...
約14年 前 | 5 件の回答 | 7
5
回答回答済み
How do I cut H and E planes from a 3D plot of an antenna radiation pattern?
You might find Eric Ludlam's <http://www.mathworks.com/matlabcentral/fileexchange/764-sliceomatic Sliceomatic> file (from the Fi...
How do I cut H and E planes from a 3D plot of an antenna radiation pattern?
You might find Eric Ludlam's <http://www.mathworks.com/matlabcentral/fileexchange/764-sliceomatic Sliceomatic> file (from the Fi...
約14年 前 | 1
回答済み
How do I simplify a symbolic expression into numeric output?
It looks like you've got a symbolic expression. You can substitute real numeric values for x1 and x2 like this: % Defin...
How do I simplify a symbolic expression into numeric output?
It looks like you've got a symbolic expression. You can substitute real numeric values for x1 and x2 like this: % Defin...
約14年 前 | 6
質問
Why does 1 - 2/3 - 1/3 not equal zero?
Try this: >> 1 - 2/3 - 1/3 MATLAB gets the wrong answer: 5.5511e-017
約14年 前 | 4 件の回答 | 8
4
回答回答済み
How do I turn off the grid in a polar plot?
It's a shame that it's not easier to do this, but here is a Solution that explains how to do it: <http://www.mathworks.com/sup...
How do I turn off the grid in a polar plot?
It's a shame that it's not easier to do this, but here is a Solution that explains how to do it: <http://www.mathworks.com/sup...
約14年 前 | 2
| 採用済み
質問
How do I turn off the grid in a polar plot?
For a normal MATLAB plot, I can turn the grid off and on with the |grid| command. x = 1:10; plot(x,sin(x)) grid on ...
約14年 前 | 3 件の回答 | 2
3
回答回答済み
How to extract leading non-zero digit?
You'll probably need to do some kind of textual manipulation. Here's one way to do it. function y = leadingDigit(x) s = s...
How to extract leading non-zero digit?
You'll probably need to do some kind of textual manipulation. Here's one way to do it. function y = leadingDigit(x) s = s...
約14年 前 | 4