photo

Nathan


Last seen: 3 días hace Con actividad desde 2023

Followers: 0   Following: 1

Estadística

All
MATLAB Answers

1 Pregunta
4 Respuestas

File Exchange

1 Archivo

Cody

0 Problemas
14 Soluciones

CLASIFICACIÓN
5.511
of 302.161

REPUTACIÓN
8

CONTRIBUCIONES
1 Pregunta
4 Respuestas

ACEPTACIÓN DE RESPUESTAS
100.0%

VOTOS RECIBIDOS
2

CLASIFICACIÓN
20.480 of 21.582

REPUTACIÓN
0

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
1

ALL TIME DESCARGAS
2

CLASIFICACIÓN
27.058
of 179.548

CONTRIBUCIONES
0 Problemas
14 Soluciones

PUNTUACIÓN
210

NÚMERO DE INSIGNIAS
2

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • Community Group Solver
  • Solver
  • First Submission
  • Knowledgeable Level 1
  • Thankful Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Resuelto


QWERTY Shift Encoder
Encode a string using the QWERTY shift code. This code is where you touch type but are offset by one character to the right. O...

3 días hace

Resuelto


Guess Cipher
Guess the formula to transform strings as follows: 'Hello World!' --> 'Ifmmp Xpsme!' 'Can I help you?' --> 'Dbo J ifm...

3 días hace

Resuelto


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. Slightly harder than it seems like it should be. Exampl...

3 días hace

Resuelto


Fix the last element of a cell array
Note: this is lifted directly from <http://www.mathworks.com/matlabcentral/answers/82825-puzzler-for-a-monday Puzzler for a Mond...

3 días hace

Resuelto


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

3 días hace

Resuelto


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

3 días hace

Resuelto


Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....

3 días hace

Resuelto


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

3 días hace

Resuelto


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

3 días hace

Resuelto


Convert a numerical matrix into a cell array of strings
Given a numerical matrix, output a *cell array of string*. For example: if input = 1:3 output is {'1','2','3'} whic...

3 días hace

Resuelto


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

3 días hace

Resuelto


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

3 días hace

Resuelto


Angle Between Analog Clock Hands
Given a datetime variable t, return the angle (in degrees) between the hour and minute hands of an analog clock at the time repr...

10 meses hace

Resuelto


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

10 meses hace

Enviada


dict
Dictionary implementation in Matlab, based around java.util.HashMap()

10 meses hace | 2 descargas |

0.0 / 5

Respondida
How can you plot multiple, superimposed traces such that where traces overlap, the background trace is faded?
Hi Stephen, You can achieve this using 'waterfall' on your data, setting the FaceAlpha property to some fractional number, and ...

más de 1 año hace | 1

Respondida
Why I got an error like :"Not enough memory resources when MATLAB runs on a super computer with 512GB RAM
Hi Ismael, Your script seems to be working with an excel COM object created by an actxserver call, and then writing your table....

más de 1 año hace | 1

| aceptada

Respondida
How to design a lowpass filter using rectangular windowing ??
Hello, The rectangular window has a uniform (1) value, as opposed to something like a Hamming window. There is usually nothing ...

más de 1 año hace | 0

Pregunta


mexcuda compiler error: "__global__" does not apply here
I'm writing a MEX CUDA function that performs the distance formula as: for each pixel of an image, where the pixel locations ar...

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta

Respondida
C++ MEX Data API: How can I get the raw pointer of an array input without copying it?
Hi there! Turns out there's another way to do this, that's faster for large arrays, although you need to know the number of dime...

casi 3 años hace | 0