已回答
How do I reinstall the Student version of MATLAB which I previously had?
Yes, you can redownload it through your account. From the FAQ: How do I download software from mathworks.com? When you ...

10 years 前 | 0

已回答
Using a while loop to output a cube root?
You're not updating the estimate. Your function's loop repeatedly uses the user inputted value for intialEstimate rather than up...

10 years 前 | 0

提问


Tracking the coordinates of a drawn box on an axes in a GUI
I'm trying to make a GUI which plots data and allows the user to draw a box to zoom in on specific parts of the data. The code i...

10 years 前 | 0 个回答 | 0

0

个回答

已回答
GUI Building Help - Layered Options
You'll need to edit your callback function for that popupmenu. function popupCallback(hObject,eventdata,handles) ind = g...

10 years 前 | 0

已回答
How to Save a raw array and delete NaN in a raw array
arr(cellfun(@(x) any(isnan(x)),arr)) = {[]}; Where arr is your input array.

10 years 前 | 1

| 已接受

已回答
Plot with respect to real time
Determine what unit you're using for passed time. Assuming seconds, you can set your x-values to be xValues = 0:t; where ...

10 years 前 | 0

提问


Reusing deleted figure handle
I have a GUI which displays several axes (array of axes) that the user can switch between to plot on. Here's what the relevant p...

10 years 前 | 1 个回答 | 0

1

个回答

已回答
import data into uitable
set(handles.edit3,'data',raw); should resolve the issue. uitable accepts either numeric arrays or cell arrays if you want mixed ...

10 years 前 | 0

| 已接受

提问


Find if any string in a cell array is contained in a string
I have a cell array of strings, for example, C = {'bob','jack','john'}. I have a test string T = 'The quick brown jack jumped...

10 years 前 | 2 个回答 | 0

2

个回答

提问


Combine the rows of an mxn cell array into a single mx1 cell array.
I have a cell array of a known number of columns but a variable number of rows. For example, I might have a 2x3 cell: A = {'h...

10 years 前 | 1 个回答 | 0

1

个回答

提问


Trouble saving a variable to a base GUI and accessing it in another.
I have 3 GUIs: # Gui1 is the base window. # Gui2 is a callback from a button in Gui1, gets user input, then attempts to save...

10 years 前 | 1 个回答 | 0

1

个回答