Question


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

ungefär 11 år ago | 1 answer | 0

1

answer

Answered
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

ungefär 11 år ago | 1

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Solved


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

mer än 11 år ago

Question


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

mer än 11 år ago | 4 answers | 0

4

answers

Question


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

mer än 11 år ago | 1 answer | 1

1

answer

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

mer än 12 år ago | 0

Question


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

mer än 12 år ago | 1 answer | 0

1

answer

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

mer än 12 år ago | 0

Question


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

mer än 12 år ago | 4 answers | 9

4

answers

Question


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

mer än 12 år ago | 0 answers | 0

0

answers

Question


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

mer än 12 år ago | 2 answers | 0

2

answers

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

mer än 12 år ago | 0

Question


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

mer än 12 år ago | 6 answers | 1

6

answers

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

nästan 13 år ago | 0

Question


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

nästan 13 år ago | 5 answers | 0

5

answers

Question


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

nästan 13 år ago | 1 answer | 0

1

answer

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

nästan 13 år ago | 1

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

nästan 13 år ago | 4

Submitted


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

ungefär 13 år ago | 1 download |

Thumbnail

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

ungefär 13 år ago | 1

| accepted

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

ungefär 13 år ago | 2

| accepted

Question


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

ungefär 13 år ago | 4 answers | 0

4

answers

Question


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

ungefär 13 år ago | 2 answers | 0

2

answers

Question


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

ungefär 13 år ago | 2 answers | 3

2

answers