Respondida
Extrapolation 2-D lookup table
I don't know what kind of extrapolation is done in Simulink, but have you looked on the FEX? This might help, for example: <...

más de 15 años hace | 0

Respondida
Error in coding
Do have the correct toolboxes? Did you format the code correctly? It looks like there is some wrapping going on even on the pa...

más de 15 años hace | 0

Respondida
How to create this function in Matlab?
If I understand you correctly, function S = mysum(a,b) S = sum(a.*b./sqrt(a.^2 + b.^2)); *EDIT* . . Sean de points o...

más de 15 años hace | 0

Respondida
matlab guide tool
Is there a question in there somewhere?

más de 15 años hace | 0

Respondida
push botton
You will either need to put the function in a separate M-file, or convert the script itself to a function so that the callback f...

más de 15 años hace | 1

Respondida
removing duplicate data
Load the data, call the UNIQUE function with the rows option, then save the result.

más de 15 años hace | 0

Respondida
Inner matrix dimensions problem
You were close, only missing one dot. z = ((2*pi)./(3*i^3))*(1-cos(i*pi))*sin(i.*x).*(exp(-3*(i^2).*t) + 2*cosh(2*(i^2).*t)...

más de 15 años hace | 0

| aceptada

Respondida
Return to previous zoom level/location
Here is an example. load clown image(X)% Now zoom in on the eye. % After zooming in, do this: . . L = ...

más de 15 años hace | 2

| aceptada

Respondida
Handle Graphics - run a callback function when mouse motion ceases??
I would perhaps not have the mouse motion reset a timer, but have the function which brings up the pseudo-tool-tip on a timer - ...

más de 15 años hace | 0

| aceptada

Respondida
Ezplot x^3 + y^3 =6xy
Try this: ezplot('x.^3 + y.^3 - 6*x.*y')

más de 15 años hace | 0

Respondida
creating GUI for my program
From your comment on Andrew's Answer, it seems that you found how to call your function by one pushbutton, but now need to store...

más de 15 años hace | 1

| aceptada

Respondida
finding the indices of the first (by index) negative number in the bottom row of a matrix
An alternative, R = size(T,1); LOC = [R find(T(R,:)<0,1,'first')]

más de 15 años hace | 2

Respondida
sub2ind -> out of range subscript
The error means exactly what it says. Here is an example where we try to access element (4,6) in a 3-by-3 matrix. It should pro...

más de 15 años hace | 0

Respondida
Version 2011 produces .FIG file unreadable by version 2006
You also could try: hgsave(fhandle,'filename','-v6') Then opening the file in 2006a with HGLOAD.

más de 15 años hace | 0

Respondida
Plotting contour lines at specific value
Please re-paste your code and use the code format button so we can read it. I see a bunch of ? marks in the code. When using t...

más de 15 años hace | 1

| aceptada

Respondida
Error in coding..help needed
That isn't an error, but a warning, right? You must have looked at the other question you asked about this problem. Do you con...

más de 15 años hace | 1

| aceptada

Respondida
How to Run an m.file from GUIDE push button?
Leave the CreateFcn alone for this task. Put the call to the M-file in the callback for the pushbutton. The callback is the fu...

más de 15 años hace | 5

| aceptada

Respondida
value from graph
I am surprised you didn't get an error, indexing into y like that. What is y anyway, you don't define it. All I see is theta, ...

más de 15 años hace | 0

Respondida
Determining the difference between two vectors
Expanding on Paulo's answer, to get the logical index locations of the errors, do this: locs = td~=rd now to find out how ma...

más de 15 años hace | 4

Respondida
Overload get(0, 'MonitorPositions')
What does the code you are using do with the value returned by get(0,'MontorPosition') Depending on your answer to that que...

más de 15 años hace | 1

Respondida
generating the list of permutations
For future reference, the first thing you should do when you have a question like this is to search the documentation. At the c...

más de 15 años hace | 2

Respondida
Merging two figures
As an example, figure(50) plot(0:.01:1) figure(60) plot((0:.01:1).^2) Now, do this: L = findobj(50,'type','line'); ...

más de 15 años hace | 15

| aceptada

Respondida
uigefile or uiimport for multiple files?
According to the <http://www.mathworks.com/help/techdoc/ref/uigetfile.html documentation> for UIGETFILE, you can allow the use...

más de 15 años hace | 0

| aceptada

Respondida
error for Index exceeds matrix dimensions
Actually, I think Tian is looking to remove the elements from the cell completely. X0 = repmat({3 0 8 7},1,3); X0 = X0(cel...

más de 15 años hace | 2

| aceptada

Respondida
Updating variables in a "real-time" GUI
Have the image processing loop check retrieve the string property from each editbox at the beginning of the loop. You may need ...

más de 15 años hace | 1

| aceptada

Respondida
how to disable bootup warning message
I think STARTUP is run after such warnings are generated, so this won't help. You could put a call to CLC in STARTUP so you d...

más de 15 años hace | 1

| aceptada

Respondida
Customizing surfc / meshc graphs
S = surfc(x,y,z); xlabel('pH'); ylabel('Ca++'); zlabel('SO4--'); title('Gypsum formation'); % Now set the surface...

más de 15 años hace | 0

Respondida
sum
I am a little confused, do you mean like this: Y = reshape(1:18,6,3) % A manageable dimension. Y_1 = sum(Y,2) So in your ...

más de 15 años hace | 1

| aceptada

Respondida
@Matt Fig: where's our hump-day puzzler?
Believe it or not, I am working on one for next week! I am trying to decide whether or not it is too hard for most people to so...

más de 15 años hace | 0

| aceptada

Respondida
create selecting menu
Will this work for your purposes? Simply call the file with a pre-existing 2D array. function [] = selctrowsgui(A) ...

más de 15 años hace | 0

Cargar más