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

oltre 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 1

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 1

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 5

| accettato

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

oltre 12 anni fa | 0

| accettato

Domanda


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?

oltre 12 anni fa | 1 risposta | 0

1

risposta

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

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

oltre 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 1

| accettato

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

oltre 12 anni fa | 14

| accettato

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

oltre 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 0

| accettato

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

oltre 12 anni fa | 0

| accettato

Domanda


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

oltre 12 anni fa | 1 risposta | 0

1

risposta