提问


How to overlay a log-plot on top of an image
Here is the use-case: You have access to an image of a MATLAB semilogx() plot from a paper, a website or something similar. The...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
Dumb mistakes we make with MATLAB.
for i = 1:3 disp(exp(i*pi)); end Instead of: for i = 1:3 disp(exp(1i*pi)); end

11 years 前 | 1

已解决


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

11 years 前

已解决


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

11 years 前

已解决


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

11 years 前

已解决


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

11 years 前

已解决


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

11 years 前

已解决


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

11 years 前

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

11 years 前

提问


Functional form of the colon (:) operator?
This is a post about "how to write neat, efficient, readable MATLAB code". I get the job done by doing work-arounds, but I would...

11 years 前 | 4 个回答 | 0

4

个回答

提问


mex debugging, integer division cause crash?
Obviously, I am doing something wrong, and my code is too complex to repeat here. I have tried to distill the parts that seems p...

11 years 前 | 1 个回答 | 1

1

个回答

已回答
about parfor and spmd speedup
So the spot where parfor can really shine is loops that are : a)Simple enough that parfor can do them in parallell b)complex/n...

12 years 前 | 0

提问


poor MATLAB 2011b performance on OSX 10.6
I tend to use debug mode a lot, step into code, test temporary stuff in the command window while at a break-point etc. On any wi...

12 years 前 | 1 个回答 | 0

1

个回答

已回答
FFT / IFFT question .
Actually: >> ifft([1 2 3 2 1], 'symmetric') ans = 2.2000 -0.5236 -0.0764 -0.0764 -0.5236 >> ifft([1 2 3 ...

12 years 前 | 0

提问


Explicitly specifying line colors when plotting a matrix
x = 1:3; y = [1 2 3; 42 40 34]; plot(x,y,'Color', [0.5 0.5 0.5; 1 0 0]) produce an error: Error using plot Co...

12 years 前 | 4 个回答 | 9

4

个回答

提问


ifft of symmetric data: do I need to provide the redundant input?
Is it possible to lure ifft(X,[],'symmetric') into working on only the non-redundant input? It seems that the low-level FFTW ...

12 years 前 | 0 个回答 | 0

0

个回答

提问


load() into workspace?
If I place load() into a m-file script, it will load into the workspace, available for the caller. If I place it into a m-fil...

12 years 前 | 2 个回答 | 0

2

个回答

已回答
Fast calculation of short cumulative product vector
Thank you for all your help. There seems to be many different ways to accomplish this, each with different speed-tradeoffs. The ...

12 years 前 | 0

提问


Fast calculation of short cumulative product vector
I want to calculate a reasonable short vector many times with variable inputs a and len %y = [a a^2 a^3...a^(len)] My method...

12 years 前 | 6 个回答 | 1

6

个回答

已回答
Writing elegant MATLAB code
Regarding question#2: idx = []; period = 10; duty_cycle = 3; for i=0:length(x) if rem(i,period) < duty_cycle ...

13 years 前 | 0

提问


Writing elegant MATLAB code
I have a great interest in writing my MATLAB code the "right" way. I want it to be compact, readable and fast. As such, I have a...

13 years 前 | 5 个回答 | 0

5

个回答

提问


Export figure is painfully slow. Save as png is fast. Why?
I tend to export some figures for use in presentations etc. I have noticed that for some figures (perhaps those with lots of dat...

13 years 前 | 1 个回答 | 0

1

个回答

已回答
Increase the speed of the program
Whenever I see a "for" statement in MATLAB, I question myself if that operation can be vectorized. Is it possible to use dlmread...

13 years 前 | 1

已回答
[DEPRECATED] What frustrates you about MATLAB?
The fact that once you schedule a low-level function, you cannot in any way stop it. Such as conv(zeros(umpteen,1), ones(umpteen...

13 years 前 | 4

已提交


Image3
A simple function for displaying 3-d arrays similar to how image() can be used for 2-d arrays.

13 years 前 | 1 次下载 |

Thumbnail

已回答
ploting a file with variable name
If you use the {} Code tags, you will make the code a lot more readable for other users, and increase the chance that someone bo...

13 years 前 | 1

| 已接受

已回答
Simple visualization of a 3-d array (volumetric?)
Thank you for your answers, but I was not able to use them for my thing. In the end, I wrote a small script for myself that is c...

13 years 前 | 2

| 已接受

提问


Simple visualization of a 3-d array (volumetric?)
I use image(sc) a lot for visualizing the contents of any 2-d array that I may be working on. Sometimes I am working on 3-d arra...

13 years 前 | 4 个回答 | 0

4

个回答

提问


Define shared subfunctions inside a classdef *.m file?
I want to define a relatively small class (small enough that it makes sense to do everything inside of one file). I want to reus...

13 years 前 | 2 个回答 | 0

2

个回答

提问


multidimensional colon operator?
I want to do something like that below: copy an N-dimensional array into a N+1-dimensional array at index t in the last dimensio...

13 years 前 | 2 个回答 | 3

2

个回答