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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 1

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 0

| accettato

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

oltre 15 anni fa | 2

| accettato

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

oltre 15 anni fa | 0

| accettato

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 1

| accettato

Risposto
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')]

oltre 15 anni fa | 2

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 1

| accettato

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

oltre 15 anni fa | 1

| accettato

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

oltre 15 anni fa | 5

| accettato

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 4

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

oltre 15 anni fa | 1

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

oltre 15 anni fa | 2

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

oltre 15 anni fa | 15

| accettato

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

oltre 15 anni fa | 0

| accettato

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

oltre 15 anni fa | 2

| accettato

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

oltre 15 anni fa | 1

| accettato

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

oltre 15 anni fa | 1

| accettato

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

oltre 15 anni fa | 0

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

oltre 15 anni fa | 1

| accettato

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

oltre 15 anni fa | 0

| accettato

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

oltre 15 anni fa | 0

Carica altro