已回答
How can share the handles variable between two skripts?
@madhan ravi +1 If they are scripts, they should be created as methods of a class which is abstracted from handle superclass. ...

6 years 前 | 0

| 已接受

已回答
GUI Resizing Issue for Different Screen Resolutions
The best, easiest and effortless way to do it is using GUI Layout Toolbox from FEX. You will never need to implement SizeChang...

6 years 前 | 1

已回答
How to use uiwait in GUI
Use waitfor instead. Waitfor pauses calculation until the object destroyed or deleted. figHandle = uifigure(..) % or you can c...

6 years 前 | 0

| 已接受

已回答
Basic power rule ((a^b)^c = a^(b*c)) does not work
By the definition Euler's equation: z = x + iy means So the two things might be different: and x2 = exp(b*c) is e...

6 years 前 | 1

| 已接受

已回答
link axes of specific subplots
Hi Lieke, Try this below: ax1 = subplot(8,1,1); % plot something ax2 = subplot(8,1,2); % plot something ax8 = subplot(8,1,...

6 years 前 | 5

| 已接受

已回答
swap values of an array
Hi Mazhar Ali, Try this below: for i = 1:numel(v) temp = O(v(i)); replacemnt = O(v(i)+1); O(v(i)) = r...

6 years 前 | 0

已回答
Line property error with time series plot
Hi John, The below line is only gives the char array of a file name. You are not actually importing your data. Wind='FloNOAA...

6 years 前 | 0

| 已接受

已回答
Nested for loops and saving data in a vector
Hi, First start with preallocation. lambda will be your 100x7 matrix, each row is a set of 7 calculation. alpha=[-0.17445,0.0...

6 years 前 | 1

| 已接受

已回答
deleting the entire line starting from 0,0,0 from a huge text file
Try this: A(all((A(:,[1:3]) == [0 0 0])')',:) = []; Where A is the Nx6 double array from your text file.

6 years 前 | 0

已回答
'Envelope' function doesn't work anymore
Maybe this would help you: restoredefaultpath rehash toolboxcache savepath Please restart Matlab after this execution.

6 years 前 | 0

已回答
How to make an editable uitable with one categorical column ?
The reason is the uitable's 2nd and 3rd columns are cell array. You should create them as double arrays like below with bracke...

6 years 前 | 0

| 已接受

已回答
how to creat this vector Z?
Try this: X=[nan nan 4 3 6 9 2 nan nan nan 8 2 13 6 1 nan]; Y=[9 13]; risingEdgeLocs = find(diff(~isnan(X)) > 0); indSpli...

6 years 前 | 1

| 已接受

已回答
Automatic resize of tables in MATLAB
Have you tried java object written here? https://undocumentedmatlab.com/page/27 jScroll = findjobj(hTable); jTable = jScroll...

6 years 前 | 0

已回答
How to dynamically name variables in a matlab struct?
You are almost there. Define your algor2 and probl2 as cell arrays with braces: algor2 = {'alg1','alg2','alg3'} probl2 = {'...

6 years 前 | 0

| 已接受

已回答
TickLabelFormat with exponential format without precision
just use logaritmic axis with semilogx: i = 1:10; x = 10.^i; y = rand(1,numel(x)); figure; hPlot = semilogx(x,y); Here i...

6 years 前 | 0

已回答
Given feed back that, I need to call outputSummary with the proper arguments.
This code is so badly written. There are too many nested functions. outputSummary function is defined inside the costFunction....

6 years 前 | 0

| 已接受

已回答
Creating a n*2 array from a variable in workspace
Please read this below: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dyna...

6 years 前 | 0

已回答
Report or Research Paper which explains, How does fmincon work?
Here you can see another answer of the similar question: https://www.mathworks.com/matlabcentral/answers/111542-how-does-fminc...

6 years 前 | 0

已回答
Multiplying a matrix in a cell by another matrix in the same cell
Try this: RU = {randi(20,25,1),randi(20,25,1),randi(20,25,1),randi(20,25,1),randi(20,25,1)}'; result = prod(horzcat(RU{1:nume...

6 years 前 | 0

已回答
Help needed with a matlab code - end missing.
I haven't seen such a badly written code ever since in my life. How they put that in a paper? Zero comments, too many nested f...

6 years 前 | 0

已回答
how can I show a photo by 10 seconds in matlab gui?
Try this: folderpath = 'C:\Users\...\Desktop\walpapers'; % folder of your jpg files directoryContent = dir([folderpath,'\*.jpg...

6 years 前 | 0

| 已接受

已回答
To plot x y z according to time
Hello Anne, I tried couple of things on your code and change the subplots into vertical instead of horizontal. Looks better. I...

6 years 前 | 0

| 已接受

已回答
How to plot a data of points?
Hi Mai, arrayfun gives you what you expected. Check my comments and read more about the function link is here: arrayfun As KS...

6 years 前 | 0

| 已接受

已回答
How can i manage to plot theta1 and theta2 vs time?
Hi, I have edited this code to give timeArray, theta1 and theta2 as outputs. First save edited version, then call the functi...

6 years 前 | 0

| 已接受

已回答
TooltipString won't show if uicontrol Enable is not 'on'
Here you can get the object, set editable property of the Java object as false like below and then add a tooltip. hEditbox = ui...

6 years 前 | 0

已回答
Combining lines into one graph.
Hi, Check what you are plotting in the first section and last section. First section: subplot(2,2,5); plot(t,x(:,5)); % he...

6 years 前 | 0

已回答
3D multiple bars plot
Use bar3 function. Read more about: bar3 A = randi(10,5,3); figure; hBar = bar3(A,'grouped');

6 years 前 | 0

已回答
App Designer - Edit grayed out code
Copy the whole code app designer produced and past it another blank .m file and save it. Then you can edit the properties, con...

6 years 前 | 0

已回答
plotting, tools and fitting
Try to define the axis handle inside the figure. Than hold it: hFig = figure; hAxis = axes(hFig); hold(hAxis,'on') plot(hAx...

6 years 前 | 0

| 已接受

已回答
How do I delete a row in a table containing certain text?
Hi Nina, You can use this code below: myTable = table({'2017','2018','2019','Total:'}',[35216284,36432973,37895599,428730614]...

6 years 前 | 3

加载更多