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

mehr als 10 Jahre vor | 0

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

mehr als 10 Jahre vor | 0

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

fast 11 Jahre vor | 0

Frage


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

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

| akzeptiert

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 1

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

| akzeptiert

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

fast 11 Jahre vor | 1

| akzeptiert

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

| akzeptiert

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

fast 11 Jahre vor | 1

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

fast 11 Jahre vor | 0

| akzeptiert

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

fast 11 Jahre vor | 0

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

fast 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

| akzeptiert

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

etwa 11 Jahre vor | 0

| akzeptiert

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

etwa 11 Jahre vor | 1

| akzeptiert

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

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

| akzeptiert

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

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

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

etwa 11 Jahre vor | 0

Mehr laden