답변 있음
Controlling Y-Axis Label Properties on Multi-Axis Plots
For example: x = 0:0.01:20; y1 = 200*exp(-0.05*x).*sin(x); y2 = 0.8*exp(-0.5*x).*sin(10*x); [AX,H1,H2] = plotyy(x,y1,x,...

11년 초과 전 | 0

답변 있음
selecting only the numbers from a string variable
C = regexp(A,'[0-9]','match'); disp(C) So do you need to just display those numbers/return them as a vector

11년 초과 전 | 1

답변 있음
How to add a property to the handles?
Let me explain it for an edit box(assuming Tag is 1) x = get(handles.edit1,'String'); set(handles.edit1,'String',z); N...

11년 초과 전 | 0

답변 있음
Click on Subplot and Open it in a "New" Figure
One way of doing this is: Example: h = figure; income = [3.2,4.1,5.0,5.6]; outgo = [2.5,4.0,3.35,4.9]; subplot(2,...

11년 초과 전 | 0

답변 있음
Handles that were created in the Callback, can be used in the other Callbacks?
Several ways are shared in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.2...

11년 초과 전 | 0

| 수락됨

답변 있음
Plotting: How can I remove the axis label and only have it at points of my choice?
If you mean axes Tick Label at end of your code write this, set(gca,'YTickLabel','||||||1.2') set(gca,'XTickLabel','0.0308|...

11년 초과 전 | 0

답변 있음
my loop dint work as i want
Simply, for i = 1:9 a(i) = randi(10); x(i) = a(i); end x

11년 초과 전 | 0

답변 있음
Detecting a particular word in a cell vector
see if any(strcmp(M,'MAR')) works for you, if there is MAR it shows 1 else 0 Example: If M = {'MAR' 'POPSIZE' 'OT...

11년 초과 전 | 0

답변 있음
How to make sure GUI is deleted before generating it again?
Use delete(name of ur gui) command. A way to do it might be to put a new push button & write above command in that push butto...

11년 초과 전 | 0

답변 있음
using a function in another m file
Just make sure the m-files in which both function & subfunction are in same directory.

11년 초과 전 | 0

답변 있음
how do you chang RGB Color Space in to the HSI Color Space or YCbCr Color Space ???
In that case use rgbmap = ycbcr2rgb(ycbcrmap) see doc ycbcr2rgb

11년 초과 전 | 1

답변 있음
how do you chang RGB Color Space in to the HSI Color Space or YCbCr Color Space ???
YCBCR = rgb2ycbcr(RGB) converts the truecolor image RGB to the equivalent image in the YCbCr color space. RGB must be a M-by-N-...

11년 초과 전 | 1

| 수락됨

답변 있음
about picture saving from figure
@Pan: Say you hv to save 10 figures, for ii = 1:10 h(ii)=figure; end % Now saving figures for ii = 1:10 saveas(h...

11년 초과 전 | 0

답변 있음
about picture saving from figure
Do you need your figure to be only in bmp format,if not h=figure; plot(sind(1:360)); saveas(h,'picture','png') % ...

11년 초과 전 | 0

답변 있음
why this command does not work
Try command: To pause your code at a point try, uiwait; at the point where you want to resume execution of your code ...

11년 초과 전 | 0

답변 있음
Setting seed in random ('normal')
I do not know about seed you r talking about,but if you want to get same sat of random numbers every time do this, rng('defa...

11년 초과 전 | 0

답변 있음
Specific Application of a GUI using Guide
Does this help you <http://www.mathworks.com/matlabcentral/fileexchange/24861> if it doesn't post more information as to whe...

11년 초과 전 | 0

질문


Using repmat command to create cell array
I want to create a cell array with a repeating pattern of rgb colors of size n where n is a variable that is determined on the ...

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Displaying legend for multiple plots
a=randn(5,50); b=randn(5,50); c=randn(5,50); figure; hold on; for i=1:5 plot(a(i,:),'.-b'); plot(b(i,:)...

11년 초과 전 | 2

답변 있음
Displaying legend for multiple plots
h = get(gca,'Children'); Then select handles of lines you want to add to legend. Say h(1) is handle of a line in 1st group,...

11년 초과 전 | 0

| 수락됨

답변 있음
gui and work space data sharing
If you want to access data that is in base workspace in your gui functions, use v = evalin('base','name of variable u want...

11년 초과 전 | 4

| 수락됨

답변 있음
loop for clock in MATLAB
If you just want a loop with only 3 different intervals maybe this crude method can help Clock15=char('12:00','12:15','12:30...

11년 초과 전 | 0

질문


Creating a cell array of size n
I need a cell array of size n, like if n is 3, I need C = {'red','red','red'} If n is 100, C = {'red','red',.......'...

11년 초과 전 | 답변 수: 4 | 0

4

답변

답변 있음
How do I read the value from an individual cell in a matrix
if u want to read from 'i'th cell, data(i); % in ur case shud be suffice. data(i,:); % gives data in ith row

11년 초과 전 | 0

| 수락됨

답변 있음
Display warning only if the "if "statement is not satisfied
if ~(qs1==q2 | qs1==q3) 'Not ok' end %If u do not like above 1 do this: if qs1==q2 | qs1==q3 else 'Not ok' end ...

11년 초과 전 | 0

| 수락됨

답변 있음
finding the gradient of a graph between two points.
i=find(voltage==3); % this gives index of 3 in voltage vector to calculate corresponding current value at voltage = 3. j=find...

11년 초과 전 | 0

| 수락됨

질문


Character array of size n.
How do you create a character array of size n(a variable generated from code).

11년 초과 전 | 답변 수: 1 | 1

1

답변

질문


Using assignin command in guide
%The below line is in base workspace C = char('red','red','red'); %The below code is in gui created by guide. a = get...

11년 초과 전 | 답변 수: 2 | 0

2

답변

질문


To set default value of slider in gui
I want to set default value of slider in gui created by guide.I've tried this, 1)In gui_OpeningFcn , is set default value by,...

11년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
loop for clock in MATLAB
Clock=char('12:00','12:15','12:30','12:45','13:00','13:15','13:30','13:45','14:00'); for i = 1:size(Clock,1) Clock(i,:) ...

11년 초과 전 | 0

더 보기