Questions tagged [matlab-guide]

This tag is NOT for "guidance" on MATLAB questions. GUIDE, is a graphical user interfaces (GUI) design environment in MATLAB. This tag relates to the development of MATLAB applications with a GUI using the interactive GUIDE layout editor.

GUIDE, is a graphical user interfaces (GUI) design environment in MATLAB. This tag relates to the development of MATLAB applications with a GUI using the interactive GUIDE layout editor, as opposed to the AppDesigner tool or creating GUIs programmatically.

MATLAB is a high-level language and programming environment developed by MathWorks.

Additional sources of technical information on these topics include:

1363 questions
-2
votes
1 answer

MATLAB: Dividing Items using a For-loop

I needed some help with a problem I'd been assigned in class. It's our introduction to for loops. Here is the problem: Consider the following riddle. This is all I have so far: function pile = IslandBananas(numpeople, numbears) for…
-2
votes
1 answer

Could anyone help me with y-axis of the image

i have a problem with y-axis when i get snapshot from camera,the y-axis start from 450 to 50 ... I want to start from the small number to big number and not vice versa ....could anyone help me to fix this problem.... Thank you
roger1
  • 3
  • 6
-3
votes
1 answer

A stand-alone application that collect data from an IP and monitor them to the end user can be called "a web-based software"?

I created a MATLAB GUI that ables to collect data form an IP and monitor them to the end user. I packaged this GUI by MATLAB Development Tool and i'm using this stand-alone software. Can this software be called a "web-based software"?
Babaktrad
  • 164
  • 1
  • 15
-3
votes
1 answer

how to delete a plot by removing the tick of a checkbox in gui?

suppose that I have gui code which generates a plot by ticking a checkbox. how can I delete the drawn graph by removing the tick. thanks in advance. So this is my code, step1 and sound are two checkboxes that generate different figures according to…
KratosMath
  • 151
  • 9
-3
votes
3 answers

How to remove an alphabet from a list of numbers in Matlab?

I have a list of numbers in a column vector. In those numbers i have an alphabet M which appears at random intervals.. this link How to delete zero components in a vector in Matlab? display how to remove the Zero, i tried to adapt how to remove M,…
Zay
  • 115
  • 2
  • 6
-3
votes
1 answer

Video Reader in Matlab

I am newbie in Matlab. I want to read a video file and I am trying this command video=mmread('Hello.avi'); but I am getting this error: ??? Undefined function or method 'mmread9' for input arguments of type 'char'.
-3
votes
1 answer

Writing image files to folder in matlab

Below is some code which is showing error imgIndex = 1; numPlotsR = size(ca, 1); numPlotsC = size(ca, 2); for r = 1 : numPlotsR for c = 1 : numPlotsC rgbBlock=ca{r,c}; imagename=strcat(int2str(imgIndex),…
-4
votes
2 answers

Matlab Simulink Model of nonlinear Model

I'm trying to create a Matlab simulink model of the following equation: I am very new to simulink and need some help getting started.
Farzan
  • 607
  • 1
  • 8
  • 27
-4
votes
1 answer

how to implement this Integrate[x^n E^(x - 1), {x, 0, 1}] in matlab

hi I've search and read but I couldn't solve this one in matlab. please help me out to solve this problem integral_0^1 x^n e^(x-1) dx
user2283774
  • 13
  • 1
  • 3
-6
votes
1 answer

Infinite loop error by using while statement

I want to know that why this is an infinite loop. The script is as follows: x=1; while x<5; x=2; x=x+2; if x==4; x=x-1; end end
-6
votes
4 answers

Transformation with High Pass Filter

I Read the image 'abc.jpg' im MATLAB and covert its data type to double.Display the image. Store the size of image in M and N. All the loops of x, y, u and v runs till image size. Now I want to know 1:how Multiply the above input image by (-1)^x+y…
Usman YousafZai
  • 1,088
  • 4
  • 18
  • 44
-7
votes
1 answer

What is the meaning of col2=b1(1:end,lead) in MATLAB

I would like to know what the meaning of col2=b1(1:end,lead); is in MATLAB?
-7
votes
2 answers

Matlab error: In an assignment A(I) = B, the number of elements in B and I must be the same

I have an array of size 9 b and i am attempting at assigning values into it. r=a(7)+u*(b(8))+v*(b(9)) b(7)=r I get that r is indeed a 1X1 value but yet for b(7)=r i still get: Error in ==> myFunction at 37 b(7)=r In an assignment A(I) = B,…
SrSbSd
  • 219
  • 2
  • 4
  • 11
1 2 3
90
91