Daniel Dolan
Followers: 0 Following: 0
Using MATLAB since 1999.
Estadística
CLASIFICACIÓN
6.185
of 295.448
REPUTACIÓN
7
CONTRIBUCIONES
12 Preguntas
5 Respuestas
ACEPTACIÓN DE RESPUESTAS
58.33%
VOTOS RECIBIDOS
7
CLASIFICACIÓN
2.842 of 20.227
REPUTACIÓN
578
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
4 Archivos
DESCARGAS
12
ALL TIME DESCARGAS
5196
CLASIFICACIÓN
24.098
of 153.872
CONTRIBUCIONES
0 Problemas
18 Soluciones
PUNTUACIÓN
191
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How to fix the column width of uitable so the user can't change it?
One pure MATLAB fix is to turn off column labels. It's a bit of a pain, but you can insert text labels above each table column ...
7 meses hace | 0
Pregunta
Fix to frequent "Application not responding" for MATLAB on the Mac
I am frequently having the Mac version of MATLAB lock up in "Application not responding", leading to "Force quit" in the Finder ...
7 meses hace | 2 respuestas | 4
2
respuestasIs there a faster complex exponent?
(It's a little tacky answering my own question, but I wanted to synthesize helpful comments from Walter and Bruno). The MATLAB ...
11 meses hace | 0
| aceptada
Pregunta
Is there a faster complex exponent?
Is there any way to more quickly evaluate complex exponentials, i.e: where Q is a real array? Quick numerical tests show tha...
11 meses hace | 2 respuestas | 0
2
respuestasPregunta
uifigure vector export size/resolution
Suppose I want to export a uifigure to a vector file (*.pdf) at a specific size. The exportgraphics command has a resolution op...
12 meses hace | 2 respuestas | 0
2
respuestasUsing MatLab 2022b, I am .txt files are grayed out when I use 'uigetfile' function on the newest Mac operation system 'Monterey' V 12.6.1
I don't have a complete solution, but it seems that putting *.* up front helps. [fileName,pathName] = uigetfile({'*.*';'*.txt.g...
más de 1 año hace | 0
Where should user preferences be stored?
MATLAB's setpref/getpref commands are the best solution on specific machine, and they persist across sessions.
alrededor de 2 años hace | 0
| aceptada
Resuelto
The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...
alrededor de 3 años hace
Pregunta
Meaning of less/greater than in handle objects
What is the meaning of less/greater than in handle objects? Here is a simple example. classdef SimpleHandle < handle en...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
What is with all these MATLAB updates?
Why are there so many MATLAB updates lately? There are two formal releases each year, but now it's pretty much a given that one...
más de 4 años hace | 0 respuestas | 1
0
respuestasResuelto
Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...
casi 5 años hace
Pregunta
MATLAB can't see browser tab created by another tab?
Try opening a website that generates tabs. For example: [status,browser,url]=web( 'http://henke.lbl.gov/optical_constant...
más de 6 años hace | 0 respuestas | 1
0
respuestasEnviada
Sandia Data Archive library
Functions for reading, writing, and probing SDA files
más de 7 años hace | 1 descarga |
uigetfile DialogTitle does not show in file browser
I recently encountered the problem and submitted a bug report. The response was the issue was an operating system problem, not ...
alrededor de 8 años hace | 0
Resuelto
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...
alrededor de 9 años hace
Resuelto
Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...
alrededor de 9 años hace
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
alrededor de 9 años hace
Resuelto
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
alrededor de 9 años hace
Resuelto
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
alrededor de 9 años hace
Resuelto
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 ...
alrededor de 9 años hace
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
alrededor de 9 años hace
Resuelto
The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".
alrededor de 9 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
alrededor de 9 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
alrededor de 9 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
alrededor de 9 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
alrededor de 9 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
alrededor de 9 años hace