Risposto
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...

quasi 9 anni fa | 0

Risposto
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...

quasi 9 anni fa | 0

Risposto
when char(65) then A.
Just guessing, >> char(65) ans = A >> double('A') ans = 65

quasi 9 anni fa | 0

Domanda


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...

circa 9 anni fa | 1 risposta | 0

1

risposta

Risposto
Which MATLAB operations/functions need speeding up?
datenum and cell2mat

circa 9 anni fa | 0

Risposto
[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...

circa 9 anni fa | 0

| accettato

Risposto
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...

circa 9 anni fa | 0

Risposto
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...

circa 9 anni fa | 1

Risposto
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 >...

circa 9 anni fa | 0

Risposto
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).

circa 9 anni fa | 0

Risposto
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...

circa 9 anni fa | 0

| accettato

Risposto
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,...

circa 9 anni fa | 1

| accettato

Risposto
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...

circa 9 anni fa | 0

Risposto
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...

circa 9 anni fa | 0

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

circa 9 anni fa | 0

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

circa 9 anni fa | 0

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

circa 9 anni fa | 0

| accettato

Risposto
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)_

circa 9 anni fa | 1

Risposto
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...

circa 9 anni fa | 0

| accettato

Risposto
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?

circa 9 anni fa | 0

Risposto
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...

circa 9 anni fa | 0

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

circa 9 anni fa | 0

| accettato

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

circa 9 anni fa | 0

| accettato

Risposto
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);

circa 9 anni fa | 1

| accettato

Risposto
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...

circa 9 anni fa | 0

Risposto
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...

circa 9 anni fa | 0

Risposto
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 = ...

circa 9 anni fa | 0

| accettato

Risposto
remove certain yticklabels from axis
Perhaps, set(gca,'YLim',[1,8]);

oltre 9 anni fa | 0

Risposto
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...

oltre 9 anni fa | 0

Risposto
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...

oltre 9 anni fa | 0

Carica altro