Domanda


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

circa 11 anni fa | 1 risposta | 0

1

risposta

Risposto
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

circa 11 anni fa | 1

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Domanda


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

oltre 11 anni fa | 4 risposte | 0

4

risposte

Domanda


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

oltre 11 anni fa | 1 risposta | 1

1

risposta

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

oltre 12 anni fa | 0

Domanda


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

oltre 12 anni fa | 1 risposta | 0

1

risposta

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

oltre 12 anni fa | 0

Domanda


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

oltre 12 anni fa | 4 risposte | 9

4

risposte

Domanda


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

oltre 12 anni fa | 0 risposte | 0

0

risposte

Domanda


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

oltre 12 anni fa | 2 risposte | 0

2

risposte

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

oltre 12 anni fa | 0

Domanda


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

oltre 12 anni fa | 6 risposte | 1

6

risposte

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

quasi 13 anni fa | 0

Domanda


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

quasi 13 anni fa | 5 risposte | 0

5

risposte

Domanda


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

quasi 13 anni fa | 1 risposta | 0

1

risposta

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

quasi 13 anni fa | 1

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

quasi 13 anni fa | 4

Inviato


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

circa 13 anni fa | 1 download |

Thumbnail

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

circa 13 anni fa | 1

| accettato

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

circa 13 anni fa | 2

| accettato

Domanda


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

circa 13 anni fa | 4 risposte | 0

4

risposte

Domanda


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

circa 13 anni fa | 2 risposte | 0

2

risposte

Domanda


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

circa 13 anni fa | 2 risposte | 3

2

risposte