
Aurelien Queffurust
Magnitude
自 2011 起处于活动状态
Followers: 0 Following: 0
统计学
All
Feeds
已回答
Matlab jokes or puns
This is my tongue-twister challenge from my old French blog http://blog.developpez.com/matlab4geek/?p=115): Are you able to say...
Matlab jokes or puns
This is my tongue-twister challenge from my old French blog http://blog.developpez.com/matlab4geek/?p=115): Are you able to say...
9 years 前 | 1
已回答
Is it possible to create a CGI executable which calls a shared library using the MATLAB Compiler to deploy my application on the Web?
Sorry where are the files, it is not clear where to find the zip file?
Is it possible to create a CGI executable which calls a shared library using the MATLAB Compiler to deploy my application on the Web?
Sorry where are the files, it is not clear where to find the zip file?
9 years 前 | 0
已回答
Can I Compile a 32-bit Executable for distribution on 32-bit Windows systems using a Matlab R2014a 64-bit on a 64-bit Windows 7 Professional OS?
Yes you can . Please note that the mcc documentation is wrong for this subject (already informed technical support for this subj...
Can I Compile a 32-bit Executable for distribution on 32-bit Windows systems using a Matlab R2014a 64-bit on a 64-bit Windows 7 Professional OS?
Yes you can . Please note that the mcc documentation is wrong for this subject (already informed technical support for this subj...
11 years 前 | 0
提问
Which tool are you using to create the documentation of your MATLAB codes?
I would like to know which documentation system you use to create the developer's guide or your MATLAB codes. I already found...
12 years 前 | 5 个回答 | 5
5
个回答已回答
Too late to submit Negative feedback for R2012b !
FYI, R2013a Prerelease is available for download. The doc is better than 12b : _The documentation now includes a table of con...
Too late to submit Negative feedback for R2012b !
FYI, R2013a Prerelease is available for download. The doc is better than 12b : _The documentation now includes a table of con...
12 years 前 | 0
已回答
Counting frequency of occurrence in matrix
Using nnz for example: nnz(x==22) will return 3
Counting frequency of occurrence in matrix
Using nnz for example: nnz(x==22) will return 3
13 years 前 | 3
已回答
extracting 1 plot out of multiple plots in a fig
Using the debug mode , I find that freqz is calling *freqzplot* . freqzplot is obsolete and *fvtool* should be used instead. S...
extracting 1 plot out of multiple plots in a fig
Using the debug mode , I find that freqz is calling *freqzplot* . freqzplot is obsolete and *fvtool* should be used instead. S...
13 years 前 | 0
已回答
How can I compile standalon app with x64 MATLAB and Compiler for x86 cpu?
From the <http://www.mathworks.fr/fr/help/compiler/mcc.html mcc> documentation : -win32 Run in 32-Bit Mode Use this o...
How can I compile standalon app with x64 MATLAB and Compiler for x86 cpu?
From the <http://www.mathworks.fr/fr/help/compiler/mcc.html mcc> documentation : -win32 Run in 32-Bit Mode Use this o...
13 years 前 | 0
已回答
How can I make an Horizontal tab (\t) using TEXT and TeX ?
I submitted a Service request to The MathWorks Technical Support. This is their answer : |I understand that '\t' is not rec...
How can I make an Horizontal tab (\t) using TEXT and TeX ?
I submitted a Service request to The MathWorks Technical Support. This is their answer : |I understand that '\t' is not rec...
13 years 前 | 0
已回答
Legend does not refresh after hold command
I have just noticed that there was no answer . Since this question I found 3 workarounds : <http://blog.developpez.com/matlab...
Legend does not refresh after hold command
I have just noticed that there was no answer . Since this question I found 3 workarounds : <http://blog.developpez.com/matlab...
13 years 前 | 0
| 已接受
已回答
Too late to submit Negative feedback for R2012b !
Thanks everyone for your feedback. Only Oleg and me seem to have tested the Prerelease. I guess TMW will never answer about the ...
Too late to submit Negative feedback for R2012b !
Thanks everyone for your feedback. Only Oleg and me seem to have tested the Prerelease. I guess TMW will never answer about the ...
13 years 前 | 2
提问
Too late to submit Negative feedback for R2012b !
The Jan Simon's question <http://www.mathworks.com/matlabcentral/answers/48070-experiences-with-release-2012b Experiences with r...
13 years 前 | 7 个回答 | 4
7
个回答提问
How can I correctly zoom axes inside an uipanel?
When I execute this code ( *an axe inside an uipanel* ) : h = uipanel; axes('parent',h) x = -4:0.1:4; y =...
13 years 前 | 1 个回答 | 1
1
个回答提问
How can I make an Horizontal tab (\t) using TEXT and TeX ?
I manage to display 2 lines in bold as follows: str =sprintf('{\\bfline1:} \n {\\bfline2:}') text(0.2,0.3, str) But...
13 years 前 | 2 个回答 | 0
2
个回答已回答
PDF Conversion
It is a known issue explained in this bug report : <http://www.mathworks.com/support/bugreports/678672 Publishing to PDF return...
PDF Conversion
It is a known issue explained in this bug report : <http://www.mathworks.com/support/bugreports/678672 Publishing to PDF return...
13 years 前 | 1
已回答
plot two y axis on the right side - GUI
You could use this submission: <http://www.mathworks.com/matlabcentral/fileexchange/30404-easy-multiplexyseries Easy MultipleXYS...
plot two y axis on the right side - GUI
You could use this submission: <http://www.mathworks.com/matlabcentral/fileexchange/30404-easy-multiplexyseries Easy MultipleXYS...
13 years 前 | 0
已回答
GUI help
I assume that you have already created with GUIDE an axes and a pushbutton which calls uigetfile let's say that you have picke...
GUI help
I assume that you have already created with GUIDE an axes and a pushbutton which calls uigetfile let's say that you have picke...
13 years 前 | 0
| 已接受
已回答
Plotting only one axis
I would use these commands: plot(1:10) set(gca,'ytick',[],'Ycolor','w','box','off')
Plotting only one axis
I would use these commands: plot(1:10) set(gca,'ytick',[],'Ycolor','w','box','off')
13 years 前 | 1
已回答
how to name a file with date and hour
fid=fopen([ datestr(now,'dd_mm_yyyy_HH_MM_SS') '.txt'],'w') will create a txt file as follows for 08-June-2012 14h11: 08_0...
how to name a file with date and hour
fid=fopen([ datestr(now,'dd_mm_yyyy_HH_MM_SS') '.txt'],'w') will create a txt file as follows for 08-June-2012 14h11: 08_0...
13 years 前 | 0
提问
Compute cumulative sum of a column vector without for loop
*For each index of a column vector , I want to compute the sum from |index| to |index+spacing|*. spacing is an integer. My a...
13 years 前 | 2 个回答 | 0
2
个回答已回答
Sort without duplicate
doc unique The *unique* function find unique elements of vector
Sort without duplicate
doc unique The *unique* function find unique elements of vector
13 years 前 | 1
| 已接受
已回答
get error when remove an item
To remove the minus sign you could use: align= char(strrep(align(1,:),'-','') ,strrep(align(2,:),'-','') )
get error when remove an item
To remove the minus sign you could use: align= char(strrep(align(1,:),'-','') ,strrep(align(2,:),'-','') )
13 years 前 | 0
提问
Legend does not refresh after hold command
Let'say I plot 2 lines and I want to display a legend plot(1:10,'b','displayname','1st graph') hold on plot(3:5,'r','...
13 years 前 | 1 个回答 | 0
1
个回答已回答
How to place xtick labels inside the plot?
See answer: <http://www.mathworks.com/matlabcentral/answers/14747-tick-labels-inside-plot Tick Labels INSIDE plot>
How to place xtick labels inside the plot?
See answer: <http://www.mathworks.com/matlabcentral/answers/14747-tick-labels-inside-plot Tick Labels INSIDE plot>
13 years 前 | 1
| 已接受
已回答
error when writing a function
The reason is that Bathymetry variable is only known in base workspace but not in the workspace of your function (as you have a...
error when writing a function
The reason is that Bathymetry variable is only known in base workspace but not in the workspace of your function (as you have a...
13 years 前 | 2
| 已接受
已回答
Abort Matlab Program via callback
You could follow this technical solution which provides examples how to achieve this task : <http://www.mathworks.fr/support/so...
Abort Matlab Program via callback
You could follow this technical solution which provides examples how to achieve this task : <http://www.mathworks.fr/support/so...
13 years 前 | 2
| 已接受
已回答
input arguments of type 'struct' !?
Just type : which -all ndsort I guess this function is not on your path. You will get the same error by typing: ...
input arguments of type 'struct' !?
Just type : which -all ndsort I guess this function is not on your path. You will get the same error by typing: ...
13 years 前 | 6
| 已接受
已回答
how to remove empty cell array contents?
To remove empty cell array contents (title of your question) : R(~cellfun('isempty',R))
how to remove empty cell array contents?
To remove empty cell array contents (title of your question) : R(~cellfun('isempty',R))
13 years 前 | 52
| 已接受