回答済み
Toc returns loop time instead of total script time
Apart from tic and toc, there is also <http://nl.mathworks.com/help/matlab/ref/profile.html profile> command to check the bottle...

9年弱 前 | 0

回答済み
How to Generate Compressor Map ?
That is a contour plot. You can plot a contour plot using <http://nl.mathworks.com/help/matlab/ref/contour.html contour> command...

9年弱 前 | 0

回答済み
when char(65) then A.
Just guessing, >> char(65) ans = A >> double('A') ans = 65

約9年 前 | 0

質問


2D LUT (extrapolation) Simulink vs interp2
Hi, I am trying to "converts" a Simulink model into a matlab script/function, but I stumbled upon the 2D Look Up table conver...

約9年 前 | 1 件の回答 | 0

1

回答

回答済み
Which MATLAB operations/functions need speeding up?
datenum and cell2mat

約9年 前 | 0

回答済み
[Simulink] Input value to update everywhere. How to?
Use variable names instead of constant value for your constant/input block, then assign a value to the variable from matlab edit...

約9年 前 | 0

| 採用済み

回答済み
How to Use Edit Text in GUI in creating a filename?
repot_path = fullfile(pathname,['TimeSignal_of_' t1 'sec_to_' t2 'sec''.txt']); Or repot_path = [pathname '\TimeSi...

約9年 前 | 0

回答済み
Value not multiplying by -1
Learn on how to debug your code, <http://nl.mathworks.com/help/matlab/matlab_prog/debugging-process-and-features.html#brqxeeu...

約9年 前 | 1

回答済み
Array divided by 255 gives me 0
testmat = [30 29 31; 29 30 30; 30 31 30] ; testmat = 30 29 31 29 30 30 30 31 30 >...

約9年 前 | 0

回答済み
how to get simulink model outputs simultaneously(when the simulation is running)?
To meet the requirement, you might want to integrate your GA mfile to simulink (e.g. using Matlab Function block).

約9年 前 | 0

回答済み
How to see the Simulink Graph?
You need to disable "Limit data point to last" in Simulink scope setting. see below... <</matlabcentral/answers/uploaded_file...

約9年 前 | 0

| 採用済み

回答済み
Text box as subplot
Something like this? figure(1) p1 = subplot(4,1,1); p2 = subplot(4,1,2); p3 = subplot(4,1,3); p4 = subplot(4,1,...

約9年 前 | 1

| 採用済み

回答済み
GUI's OpeningFcn is not ran when opened from the explorer, do I have to open GUI to successfully launch my GUI?
You can also call the applicable *.mfile from the Matlab command window.. I think when you double click the *.fig file, matla...

約9年 前 | 0

回答済み
Simulink : How can I update the data from Workspace while the simulation is running?
How do you pause the simulation? Based on the description on To Workspace this should be possible (updated), see below: _T...

約9年 前 | 0

回答済み
How to solve plotting different data in same figure when x-vectors are not the same?
Does this work? plot(x1,y1,x2,y2);

約9年 前 | 0

回答済み
standalone .exe program from .m
You need additional tollbox to do that. See below : <http://nl.mathworks.com/products/compiler/>

約9年 前 | 0

回答済み
Let MATLAB open .txt Files in Microsoft Editor
What about this command? <http://nl.mathworks.com/help/matlab/ref/open.html open>

約9年 前 | 0

| 採用済み

回答済み
Sort array elements in ascending order
res = sortrows(i,[1,2]); PS: Don't name you variable _i_, by the way. _i_ in matlab represent _sqrt(-1)_

約9年 前 | 1

回答済み
Build Truth tables with MATLAB code
Do you want to use Truth table in Simulink? Perhaps this link can help you, <http://nl.mathworks.com/help/simulink/slref/comb...

約9年 前 | 0

| 採用済み

回答済み
How can I assign the same name to mat file as it is in another variable's input?
save(a,'a') But, why do you want to do this?

約9年 前 | 0

回答済み
Maximum Number of Rows in Matlab
It depends on data type and amount of column. See link below: <http://www.mathworks.com/matlabcentral/answers/91711-what...

約9年 前 | 0

回答済み
how to see the signal dimensions of simulink blocks
In 2013b version: <</matlabcentral/answers/uploaded_files/24250/sim_sigdim.jpg>>

9年以上 前 | 0

| 採用済み

回答済み
How can i make structure inside structure?
Check this link: <http://nl.mathworks.com/help/matlab/matlab_prog/access-data-in-nested-structures.html>

9年以上 前 | 0

| 採用済み

回答済み
How can I split a word to parts?
thres = 3; %three last character of first word a = 'Hello World'; b = strtok(a); b = b(end-(thres-1):end);

9年以上 前 | 1

| 採用済み

回答済み
Creating structure array and store it in mat file!
Perhaps you define the structure incorrect, Please see this <http://nl.mathworks.com/help/matlab/matlab_prog/create-a-structu...

9年以上 前 | 0

回答済み
subtracting and saving in an array
A wild guess, you may need: # _cell2mat_ (to convert your cell into workable matrix) # _diff_ (to find the difference betwee...

9年以上 前 | 0

回答済み
Cycle For how can i??
If i fully understand the question, below is the "cycle for loop" that you want, for idrow = 2:size(W,1)-1 for idcol = ...

9年以上 前 | 0

| 採用済み

回答済み
remove certain yticklabels from axis
Perhaps, set(gca,'YLim',[1,8]);

9年以上 前 | 0

回答済み
Locate Y given X and display on the graph
Refering to your description, If you generate the graph yourself using _plot_ function, then simply interpolates your xpoint...

9年以上 前 | 0

回答済み
Clear axes in GUI using cla reset does not work for secondary axes?
What if, set(get(handles.ax1, 'Parent'), 'HandleVisibility', 'on'); %set handle visibility to on axes(handles.ax1); %mak...

9年以上 前 | 0

さらに読み込む