active questions tagged matlab - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:52:33Z http://stackoverflow.com/feeds/tag/matlab http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850534/matlab-storing-results-of-a-operation-in-a-matrix 0 [Matlab] Storing Results of a Operation in a Matrix bobber205 2009-12-05T00:18:35Z 2009-12-05T02:47:44Z <p>Let's say I want to take the sin of 1 through 100 (in degrees).</p> <p>I come from a C background so my instinct is to loop 1 through 100 in a for loop (something I can do in Matlab). In a matrix/vector/array I would store sin(x) where x is the counter of the for loop. </p> <p>I cannot figure out how to do this in Matlab. Do I create a array like </p> <pre><code>x = [1 .. 100]; </code></pre> <p>And then do </p> <pre><code>x[offset] = numberHere; </code></pre> <p>I know the "correct" way. For operations like addition you use .+ instead of + and with a function like sin I'm pretty sure you just do</p> <pre><code>resultArray = sin(x); </code></pre> <p>I just want to know that I <em>could</em> do it the C way in case that ever came up, thus my question here on SO. :)</p> http://stackoverflow.com/questions/1848176/how-not-to-save-non-image-area-in-matlab-image-plot 1 how not to save non-image area in matlab image plot Tim 2009-12-04T16:41:39Z 2009-12-04T20:18:31Z <p>Hi,</p> <p>I like to show an image and plot something on it and then save it as an image with same size as the original one. My Matlab code is:</p> <pre><code> figH = figure('visible','off') ; imshow(I); hold on ; % plot something saveas(figH,'1','jpg'); close(figH) ; </code></pre> <p>But resulting image "1.jpg" has saved non-image area in the plot as well as the image. How can I solve this problem?</p> <p>Thanks and regards!</p> http://stackoverflow.com/questions/1846635/calculate-most-common-values 1 Calculate most common values gustav 2009-12-04T12:24:14Z 2009-12-04T20:14:17Z <p>If i have a matrix A with n values spanning from 65:90. How do i get the 10 most common values in A? I want the result to be a 10x2 matrix B with the 10 common values in the first column and the times it appears in the second column.</p> http://stackoverflow.com/questions/1847598/request-in-matlab-plz -3 request in matlab plz ? [closed] medo 2009-12-04T15:15:50Z 2009-12-04T15:27:48Z <p>I'm beginner in matlab and I have to do a report about : Image processor</p> <ul> <li>Build up a computer code that accepts an image (in some standard format) and gives the user the ability to perform different transformations on it such as rotation, translation, expansion, etc.</li> <li>More specifically, the code should print out a minimum of SIX available transformations and give the user the ability to choose a sequence of them. The program should display the image after applying each transformation in the sequence.</li> </ul> <p>I want to do this project but it is <strong>NOT allowed</strong> to use MATLAB built-in functions that perform linear algebra computations such as rref(), rank(), imrotate(), imresize(), etc.*</p> <p>Can any one help me how to start or send me small example in any operation?</p> <p>thanks and sorry for long question</p> http://stackoverflow.com/questions/1842804/tab-completion-of-filenames-as-arguments-for-matlab-scripts 2 Tab-completion of filenames as arguments for MATLAB scripts Jacob 2009-12-03T20:45:51Z 2009-12-04T15:24:47Z <p>We all know MATLAB provides tab-completion for filenames used as arguments in MATLAB function like <code>importdata</code>,<code>imread</code>. How do we do that for the functions we create?</p> <p><strong>EDIT:</strong></p> <p><img src="http://imgur.com/UW4ye.png" alt="alt text"></p> <p>Displays the files and folders in the current directory.</p> http://stackoverflow.com/questions/1832446/cross-correlation-coefficient 0 Cross-correlation coefficient Scott 2009-12-02T11:52:04Z 2009-12-04T11:18:31Z <p>I have two waveforms in the time domain, of which I need to measure the <a href="http://en.wikipedia.org/wiki/Cross-correlation" rel="nofollow">cross-correlation</a> coefficient in MATLAB. I have tried <code>max(abs(xcorr(m,n,'coeff')))</code> but it doesn't seem to be working properly.</p> <p>Also I need to measure the cross correlation coefficient for different sections of the waveform, e.g. measure the cross correlation coefficient at 1 minute intervals. And if possible output these values to a matrix or something.</p> <p>I know this is a lot to ask but I'm a MATLAB novice and find this task daunting!<br> Any help you could give me on any section of this question would be gratefully received.</p> <p><hr></p> <p><strong>EDIT:</strong> This is the code I used to test the correlation code:</p> <pre><code>x = rand(1,14400); y = rand(1,14400); r = max( abs(xcorr(x,y,'coeff')) ) </code></pre> http://stackoverflow.com/questions/1223795/using-java-enums-or-public-static-fields-in-matlab 1 using Java enums or public static fields in MATLAB Jason S 2009-08-03T18:10:25Z 2009-12-04T10:39:45Z <p>I'm wondering how in MATLAB you can get a reference to a Java <code>enum</code> or static public field. In MATLAB, if you are trying to use Java objects/methods, there are equivalents to Java object creation / method call / etc.:</p> <p>Java: <code>new com.example.test.Foo();</code> </p> <p>MATLAB: <code>javaObject('com.example.test.Foo');</code> </p> <p>Java: <code>com.example.test.Foo.staticMethod();</code> </p> <p>MATLAB: <code>javaMethod('staticMethod', 'com.example.test.Foo');</code></p> <p>Java: <code>SomeEnum e = com.example.test.SomeEnum.MY_FAVORITE_ENUM;</code></p> <p>MATLAB: ?????</p> <p>Java: <code>int n = com.example.test.Foo.MAX_FOO</code>;</p> <p>MATLAB: ?????</p> http://stackoverflow.com/questions/1773850/constants-in-matlab 5 Constants in MATLAB Benjamin Oakes 2009-11-20T23:24:16Z 2009-12-04T04:01:08Z <p>I've come into ownership of a bunch of Matlab code and have noticed a bunch of "magic numbers" scattered about the code. Typically, I like to make those constants in languages like C, Ruby, PHP, etc. When googling this problem, I found that the "official" way of having constants is to define functions that return the constant value. Seems kludgey, especially because Matlab can be finicky when allowing more than one function per file.</p> <p>Is this really the best option?</p> <p>I'm tempted to use / make something like the C Preprocessor to do this for me. (I found that something called <code>mpp</code> was made by someone else in a similar predicament, but it looks abandoned. The code doesn't compile, and I'm not sure if it would meet my needs.)</p> http://stackoverflow.com/questions/1811372/how-to-rotate-image-by-nearest-neighbor-interpolation-using-matlab 2 How To Rotate Image By Nearest Neighbor Interpolation Using Matlab MeadowMuffins 2009-11-28T02:43:46Z 2009-12-03T23:50:31Z <p>My Plain Code without interpolation: </p> <pre><code>im1 = imread('lena.jpg');imshow(im1); [m,n,p]=size(im1); thet = rand(1); m1=m*cos(thet)+n*sin(thet); n1=m*sin(thet)+n*cos(thet); for i=1:m for j=1:n t = uint16((i-m/2)*cos(thet)-(j-n/2)*sin(thet)+m1/2); s = uint16((i-m/2)*sin(thet)+(j-n/2)*cos(thet)+n1/2); if t~=0 &amp;&amp; s~=0 im2(t,s,:)=im1(i,j,:); end end end figure; imshow(im2); </code></pre> <p>This code creates black spot, the problem is how to do interpolation? Thank you all for any illumination. P.S. Not asking for build-in function: imrotate(im1,1/thet,'nearest');</p> http://stackoverflow.com/questions/1838537/break-polyhedron-into-tetrahedron 2 Break Polyhedron into Tetrahedron Ngu Soon Hui 2009-12-03T08:42:13Z 2009-12-03T19:05:25Z <p>I have a Polyhedron, with a list of vertices (<code>v</code>) and surfaces (<code>s</code>), how to break this polyhedron into a list of Teterahedrons?</p> <p>I would appreciate if there is any built-in matlab command for this. </p> http://stackoverflow.com/questions/1842057/octave-errors-in-attempting-to-study-image-compression 0 Octave Errors in attempting to study Image Compression Buffalo 2009-12-03T18:51:33Z 2009-12-03T18:51:33Z <p>Hey Folks,</p> <p>Let me start by saying I LOVE YOU. Thank you.</p> <p>Next order of business:</p> <pre><code>octave-3.2.3:8&gt; xin = imread('3Phone.png'); octave-3.2.3:9&gt; colormap(gray(256)); octave-3.2.3:10&gt; image(xin); error: invalid value for array property "cdata" error: set: expecting argument 2 to be a property name error: set: expecting argument 4 to be a property name error: set: expecting argument 6 to be a property name error: called from: error: /Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/image/__img__.m at line 57, column 7 error: /Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/image/image.m at line 75, column 5 error: A(I): Index exceeds matrix dimension. error: called from: error: /Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/plot/__go_draw_axes__.m at line 383, column 22 error: /Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/plot/__go_draw_figure__.m at line 92, column 3 error: /Applications/Octave.app/Contents/Resources/share/octave/3.2.3/m/plot/gnuplot_drawnow.m at line 91, column 5 octave-3.2.3:10&gt; </code></pre> <p>I am using Octave 3.2.3 on Mac OS X (Snow Leopard). This is a very basic attempt to display an image that has been read and stored memory. Any help on fixing this problem would be much appreciated. Thanks!</p> http://stackoverflow.com/questions/1833082/one-dimensional-gauss-convolution-function-in-matlab 2 one Dimensional gauss convolution function in Matlab Hani 2009-12-02T14:03:24Z 2009-12-02T22:14:05Z <p>Hello, I am trying to write a function that returns a one dimentional gauss filter. the function took sigma as a parameter. The problem is that the function returns the same array for all sigmas.</p> <pre><code> function gaussFilter=gauss(sigma) width = 3 * sigma; support = (-width :sigma: width); gaussFilter= exp( - (support).^2 / (2*sigma^2)); gaussFilter = gaussFilter/ sum(gaussFilter); </code></pre> <p>Note that support array is calculated correctly but the problem arise when applying the exp. </p> http://stackoverflow.com/questions/1832429/how-do-i-use-the-least-squares-approximation-in-matlab 0 How do I use the least squares approximation in MATLAB? Jakob 2009-12-02T11:47:50Z 2009-12-02T15:19:10Z <p>For a homework assignment in linear algebra, I have solved the following equation using MATLAB's <code>\</code> operator (which is the recommended way of doing it):</p> <pre> A = [0.2 0.25; 0.4 0.5; 0.4 0.25]; y = [0.9 1.7 1.2]'; x = A \ y </pre> <p>which produces the following answer:</p> <pre> x = 1.7000 2.0800 </pre> <p>For the next part of assignment, I'm supposed to solve the same equation using the least squares approximation (and then compare it against the prior value to see how accurate the approximation is).</p> <p>How can I find a way of doing that in MATLAB?</p> <p>Prior work: I have found the function <code>lsqlin</code>, which seems to be able to solve equations of the above type, but I don't understand which arguments to supply it nor in what order.</p> http://stackoverflow.com/questions/1823668/push-a-matlab-workspace-onto-a-stack 2 push a MATLAB workspace onto a stack rlbond 2009-12-01T02:40:59Z 2009-12-01T18:15:30Z <p>Does anyone know if it's possible to have a stack of workspaces in MATLAB? It would be very convenient, to say the least.</p> <p>I need this for research. We have several scripts which interact in interesting ways. Functions have local variables, but not scripts...</p> http://stackoverflow.com/questions/1672036/use-matlab-generated-dll-for-generating-c-dll 0 use matlab generated dll for generating c++ dll Hasini 2009-11-04T06:37:11Z 2009-12-01T14:55:45Z <p>hi, I have generated cppshared lib dll using matlab command mcc. Now I want this dll to make another dll inside microsoft visual c++. Is it possible to make a dll using another? Please help!!</p> http://stackoverflow.com/questions/1819232/executing-callback-function-from-another-function-file-in-matlab 1 Executing callback function from another function file in Matlab JussiR 2009-11-30T11:19:44Z 2009-12-01T10:21:38Z <p>So, i have two functions: one which creates the UI with buttons, and the another one, from which i'd like to execute the same function as pressing button does.</p> <p>When i dig into the figure with <code>get(gcf,'children')</code> i find the buttons, with a Callback property, which gives the following result:</p> <pre><code>ans = [function_handle] [ 1] [ 1] [1x6 double] </code></pre> <p>Now, as far as i understand, with the first indice should be able to execute the same function, as is executed when the button is pressed from the UI, but how do i do that? I tried everything, but nothing seems to work.</p> http://stackoverflow.com/questions/1823129/how-do-you-sum-values-inside-a-for-loop-in-matlab -1 How do you sum values inside a for loop in Matlab? Ben Fossen 2009-11-30T23:28:03Z 2009-11-30T23:52:38Z <p>I want to sum acidic as the for loop runs and then print out the total value of all the previous acidic values. My problem is right now is it is currently just printing the individual values not one summed value of acidic. How do I sum.</p> <p>this is what is printing to the command window</p> <p>ans =</p> <pre><code>5.9676 </code></pre> <p>ans =</p> <pre><code>2.1676 </code></pre> <p>here is my code</p> <p>pki = [7.7,3.9];</p> <p>t= 2;</p> <p>n=55;</p> <p>for i = 1:t;</p> <pre><code>acidic = log10(1/((n-1)*(10^-pki(i)))); sum(acidic) </code></pre> <p>end </p> http://stackoverflow.com/questions/1820802/function-pointers-in-matlab 3 Function pointers in MATLAB JP 2009-11-30T16:20:20Z 2009-11-30T17:40:57Z <p>If I use the <code>inline</code> function in matlab I can create a single function name that could respond differently depending on previous choices:</p> <pre><code>if (sometimes) p = inline('a - b','a','b'); else p = inline('a + b','a','b'); end c = p(1,2); d = p(3,4); </code></pre> <p>But the inline functions I'm creating are becoming quite epic, so I'd like to move them to included function files instead of inline functions.</p> <p>I have <code>Mercator.m</code>, <code>KavrayskiyVII.m</code> and a few others (all taking a value for <code>phi</code> and <code>lambda</code>) and I'd like to assign the chosen function to <code>p</code> in the same way as I have above so that I can call it many times (with variable sized matrices and things, that make <code>eval</code> impossible, I believe).</p> <p>I have a variable, <code>type</code>, that will be one of the names of the functions required (eg. 'Mercator', 'KavrayskiyVII'), I figure I need to make <code>p</code> into a pointer to the function named inside the <code>type</code> variable. Any ideas?</p> http://stackoverflow.com/questions/1820125/cut-polygon-function-in-matlab 0 Cut Polygon Function in Matlab Ngu Soon Hui 2009-11-30T14:24:30Z 2009-11-30T14:24:30Z <p>Is there an existing matlab implementation of cut polygon function? Such as the one that is based on <a href="http://stackoverflow.com/questions/1775457/generate-new-polygons-from-a-cut-polygon-2d">this</a>? </p> <p>I understand that we have <a href="http://www.mathworks.com/matlabcentral/fileexchange/24449" rel="nofollow">this implementation</a>, but looking at the source code, I don't think this is a correct implementation ( just my hunch) because it distinguishes vertical and horizontal lines in the checking ( A good algorithm should just don't care about whether the line is vertical or not, for the concept of vertical/horizontal is arbitrary). </p> http://stackoverflow.com/questions/1816097/how-would-i-randomly-pick-one-point-from-n-points-in-matlab 0 How would I randomly pick one point from N points in MATLAB? gurwinder 2009-11-29T17:16:40Z 2009-11-30T11:21:23Z <p>I use this code to create and plot <code>N</code> points:</p> <pre><code>N = input('No. of Nodes:'); data = rand(N,2); % Randomly generated n no. of nodes x = data(:,1); y = data(:,2); plot(x,y,'*') hold on </code></pre> <p>How would I randomly pick one of these points?</p> http://stackoverflow.com/questions/803718/constant-latitude-line-in-matlab 1 Constant Latitude Line in Matlab DMa 2009-04-29T18:48:01Z 2009-11-30T11:00:04Z <p>I'm new to mapping and would like to plot a line of constant latitude at -68 with longitude extending from -80 to -65. If I use linem or plotm with the four coordinates I just get a single point. The only way I can kind of create a fake lat line is to use a track2 great circle. But this line is not rounded the way a true latitude line would be. Does anyone have a solution?</p> <p>Here's what I'm using: Mapping Toolbox Version 2.6 (R2007b) 02-Aug-2007</p> <p>This code snippet is working but the line is not curved and I have to write the numbers in plotm in odd format.</p> <pre><code>LATMIN = -70; LATMAX = -65 ; LONMIN = -80; LONMAX = -65; [map,maplegend] = tbase(1,[LATMIN LATMAX],[LONMIN LONMAX]); figure(1); clf ham = axesm('MapProjection','eqdconic','MapParallels',[],'MapLatLimit',... [LATMIN LATMAX],'MapLonLimit',[LONMIN LONMAX]); setm(ham,'MLineLocation',LONMIN:5:LONMAX,... 'MLabelLocation',(ceil(LONMIN/10)10+10):10:(floor(LONMAX/10)10),... 'MeridianLabel','on',... 'PLineLocation',LATMIN:1:LATMAX,... 'PLabelLocation',LATMIN:5:(LATMAX-5),... 'ParallelLabel','on',... 'LabelFormat','signed',... 'flinewidth',0.1); hold on; plotm([-68.58455; -68.58455],[-80.0; 360-65.0],'mo-'); hf = framem; </code></pre> http://stackoverflow.com/questions/1305166/matlab-why-does-solve-return-an-empty-sym-object 0 MATLAB: Why does solve return an empty sym object? Ziortza 2009-08-20T10:07:36Z 2009-11-30T04:50:13Z <p>I´m trying to solve this set of equations in MATLAB and I get an empty <code>sym</code> object:</p> <pre><code>equations = {'I2B+I2EQAB=I22B+I2EQBC',... 'I2A=I2EQAB+I2EQAC+I22A',... 'I2C+I2EQBC+I2EQAC=I22C',... 'I22B=IZB+IC1B',... 'IZB=IC2B+IZBB',... 'I22C=-I2C*Z2C*YC/2+IZC',... 'IZC=IC2C+IZCC',... 'I22A=IC1A+IZA1',... 'IC4A+IZA2=IZBB+IZCC',... 'IZB*Z2LB+IC2B*2/YB=IC1B*2/YB',... 'I2C*Z2C=-IC2C*2/YC+IZC*Z2LC',... 'IZA1*m*Z2LA+IC2A*2/(m*YA)=IC1A*2/(m*YA)',... 'IC4A*2/((1-m)*YA)=IC2A*2/(m*YA)+IZA2*(1-m)*Z2LA',... 'I2EQBC*Z2EQBC+IZC*Z2LC=IZB*Z2LB',... 'I2B*Z2B+IC1B*2/YB',... 'I2C*Z2C+IC1C*2/YC',... 'I2A*Z2A+IC1A*2/(m*YA)',... 'IZB*Z2LB+(1-m)*Z2LA*IZA2=IZA1*m*ZL2A-I2EQAB*Z2EQAB',... 'IZA1*m*Z2LA=IZA2*(1-m)*Z2LA+IZC*Z2LC+I2EQAC*Z2EQAC',... 'IC4A/((1-m)*YA)=IC2C/YC'}; variables = {'m','I2A','I2B','I2C','I2EQAB','I2EQAC','I2EQBC',... 'IZA1','IC1A','IC2A','IZA2','IC4A','IC1B','IZB',... 'IC2B','IZBB','IZC','IC2C','IZCC'}; LL = solve(equations{:},variables{:}) </code></pre> <p>Can you help me figure out what's going wrong?</p> http://stackoverflow.com/questions/1817174/matlab-how-to-divide-a-matrix-into-equals-parts 2 MATLAB How to divide a matrix into equals parts? Hubert Perron 2009-11-29T23:40:42Z 2009-11-30T00:05:00Z <p>Let's say I have a 100x100 matrix, I want to divide it into equals parts of 10x10.</p> <p>The problem is that the input matrix can be of any size but always mod 10. I looked at the mat2cell function but it does not seem to work for a dynamic number of parts. Or am I missing something? </p> <p>Thanks! </p> http://stackoverflow.com/questions/1815837/matlab-evaluate-symbol-expression 0 Matlab: evaluate symbol expression Fantomas 2009-11-29T15:39:59Z 2009-11-29T22:02:46Z <pre><code> syms t; % define symbolic var x y = int( t^2 ); % calculate integral of x; it should be t^3/3 x = [1:10] </code></pre> <p>Now I want to calculate y(x), it should be [1/3,8/3,..,1000/3]</p> http://stackoverflow.com/questions/1784124/converting-matlab-code-to-fortran 2 converting MATLAB code to Fortran Kevin 2009-11-23T16:06:37Z 2009-11-28T01:56:44Z <p>I a medical researcher with code written in MATLAB 2009b that runs very slowly because of a self-referential loop (not sure of the programming lingo here), i.e., the results of the first iteration is used during the second iteration, etc. (I have vectorized it to a fare-thee-well. I have run the Profiler.)</p> <p>I'd like to convert the slow parts of the code to a mex function. I learned Fortran in the early 1970s but haven't used it since. The code I need to convert doesn't do anything fancy, it is just a long numerical calculation.</p> <p>My question is: what would be the easiest-to-relearn version of Fortran adequate for this purpose, and what compiler works best on the Intel Mac for this? I found information comparing syntax in MATLAB to Fortran 90 for example, and the conversion doesn't look like it would be too daunting for me. However, again, I am no programmer.</p> <p>I am using a MacBook Pro with OS 10.6.</p> <p>Appreciate any help, thanks.</p> http://stackoverflow.com/questions/1327178/finding-hidden-elements-in-an-image -5 Finding Hidden Elements in an image King 2009-08-25T09:42:57Z 2009-11-28T01:50:08Z <p>I have a two RAW images, a string of text, and a logo. The text and the logo are hidden by applying histogram transformation , now i need to extract the logo and text.. how can i do it in matlab, can anybody give me a piece of code, i want to get over it quickly</p> http://stackoverflow.com/questions/1810393/how-to-read-till-end-of-file-in-matlab -1 How to read till end of file in MATLAB? eSKay 2009-11-27T19:42:42Z 2009-11-28T00:20:34Z <p>I have a file <code>a.txt</code>:</p> <pre><code>03,17.406199 05,14.580129 07,13.904058 11,14.685388 15,14.062603 20,14.364573 25,18.035175 30,21.681789 50,22.662820 </code></pre> <p>The number of rows in the file are not known. I want to read the file and store </p> <pre><code>3 5 7 11 15 20 30 50 </code></pre> <p>in one array and the float values in another.</p> <p><strong>How do I read in a file when the length of data is not known?</strong></p> http://stackoverflow.com/questions/1809881/how-to-plot-a-3d-plot-in-matlab -1 How to plot a 3D plot in MATLAB? eSKay 2009-11-27T17:30:14Z 2009-11-27T19:16:40Z <p>I have three parameters <code>x</code>,<code>y</code> and <code>t</code>. But the problem is my file structure.</p> <p>My files are named as:</p> <pre><code>e_x_y.txt t_x_y.txt </code></pre> <p>where <code>e_x_y.txt</code> has the error for particular values of <code>x</code> and <code>y</code> and <code>t_x_y.txt</code> has corresponding time values.</p> <p><strong>I need to plot the values in <code>e_x_y.txt</code> on a <code>x vs y vs t</code> graph.</strong></p> <p>What is the best way to do that?</p> <p>I know what x and y values are, so I don't have to deduct them from the file names.</p> <p><hr></p> <p>To make things more clear,</p> <p>suppose my files are:</p> <pre><code>e_4_5.txt 45 54 t_4_5.txt 2.0 6.0 e_7_8.txt 32 98 121 t_7_8.txt 2 9 1.0 </code></pre> <p>I want to plot the following points:</p> <pre><code>(4,5,2.0) = 45 (4,5,6.0) = 54 (7,8,2.0) = 32 (7,8,9.0) = 98 (7,8,1.0) = 121 </code></pre> http://stackoverflow.com/questions/1803043/trace-an-arrow-toward-a-specific-angle 4 Trace an arrow toward a specific angle Aurélien 2009-11-26T11:03:55Z 2009-11-27T16:36:19Z <p>Hey everyone,</p> <p>I am working in MATLAB and I'm stuck on a very simple problem: I've got a object defined by its position <code>(x,y)</code> and <code>theta</code> (an angle, in degrees). I would like to plot the point and add an arrow, starting from the point and pointing toward the direction defined by the angle. It actually doesn't even have to be an arrow, anything graphically showing the value of the angle will do !</p> <p>Here's a picture showing the kind of thing I'm trying to draw: <a href="http://img510.imageshack.us/img510/4253/image1mk.png" rel="nofollow">Example</a></p> http://stackoverflow.com/questions/1803053/set-of-n-linear-equations-in-matlab -4 set of n-linear equations in matlab unknown (google) 2009-11-26T11:07:18Z 2009-11-27T14:35:51Z <p>I have some trouble on setting of n-linear equations in matlab.I don't know how can I declare in matlab.I need matlab code for setting of n-linear equations..</p>