Respondida
ocr problem
Check out this similar problem. Instead of having so much else ifs, do a conversion of a number to string. That is, 'A' is a 65,...

más de 14 años hace | 0

| aceptada

Respondida
How can i make a graph only with numerical values?
x=[1 2 3]; % or x=1:3 y=[3 4 6]; plot(x,y); it will plot a sequence of points. If you dont want them to be connecte...

más de 14 años hace | 1

Respondida
Need Help with For Loops
message=input('Enter a message to encode','s'); for i=1:length(message) if (message(i)>=65 && message(i)<=90) ...

más de 14 años hace | 0

Respondida
error in imshow()
imshow() does not take any matrix, the values mast be of some format (i am not sure). You can use imagesc(), which, I think, can...

más de 14 años hace | 0

Respondida
There is any function substituting for this 'for loops'?
A=zeros(3,4,3); A(:,:,1)=[1 0 1 1;1 1 1 1;0 0 1 0]; A(:,:,2)=[1 1 0 0;1 1 0 1;0 0 1 0]; A(:,:,3)=[1 1 1 1;0 0 1 1;1 0 1 ...

más de 14 años hace | 0

Respondida
solve equation without fsolve
Assuming that each RT will yield four roots: a=0.003925; b=0.110361; d=1.492690; R0=100; T=zeros(4,length...

más de 14 años hace | 1

Respondida
how to get handle of an image opened in the GUI figure window, to be used in other callbacks.
handles.a=str2num(get(handles.parameter1,'string')); %similar to global variable (don't know for sure) guidata(hObject, h...

más de 14 años hace | 0

Respondida
How do I plot a selective range of x-axis values
your 't' and 'm' must be the same size; open the variable 't' from Workspace and look what index contains the value of ~600. Let...

más de 14 años hace | 5

| aceptada

Respondida
a simple clasification of matrix elements
There is one quick way to do it, however it is based on the assumption that the initial array will always have only 3 distinct v...

más de 14 años hace | 0

| aceptada

Pregunta


How to keep the size aspect ratio of GUI form fixed?
Hi all. I am trying to make my GUI figure to be resizable but I need the aspect ratio to be fixed. Is this possible to achieve?

más de 14 años hace | 1 respuesta | 0

1

respuesta

Respondida
Why does this happen? - In an assignment A(I) = B, the number of elements in B and I must be the same
Maybe, this will do: function dxdt = ModelingQ2(t,x) dxdt = zeros (size(x)); dxdt(1,:) = x-3; % your k(1)=1, so you can omi...

más de 14 años hace | 0

Respondida
fsolve usage
command line: [Vo,t]=offensive(pi/6,10,.1) Your function code does not make sense. You pass theta, weight, c to it, but then y...

más de 14 años hace | 0

Respondida
getting x and y for 3d
A=yourPicture; [H L]=size(A); dx=theRealLengthOfTheView/H; %this you must know, otherwise you can not scale the image. dy=the...

más de 14 años hace | 0

| aceptada

Respondida
Sum function?
n=given; i=1:2^(n-1); %gives you array of integers from 1,2,...2^(n-1) % let's say your function is f=2i; f=2*i; ...

más de 14 años hace | 1

| aceptada

Respondida
matlab view
at the right top corner of the editor window there is a little 'down' arrow(to dock window). Press on it and the editor will be ...

más de 14 años hace | 14

| aceptada

Respondida
How to zero pad in frequency domain ?
You zeropad a matrix of frequency spectrum the same way you would zeropad any matrix. For example, if your frequency matrix is m...

más de 14 años hace | 0

| aceptada

Respondida
legend
when you do plot something you can specify your 'something' by the legend to know which plot corresponds to which function. try ...

más de 14 años hace | 0

| aceptada

Respondida
How can I plot the result of FZERO?
If you plot the function in the range from -20:20, you can see, that it crosses the x-axis around -1.0772 (and probably nowhere ...

más de 14 años hace | 0

| aceptada

Pregunta


Message window in GUI (MatLab)
Hello. I am trying to create a text window in GUI that will be used to display messages/current activity of the program. It shou...

más de 14 años hace | 1 respuesta | 0

1

respuesta