photo

Daniel Dolan


Last seen: oltre un anno fa Attivo dal 2009

Followers: 0   Following: 0

Messaggio

Using MATLAB since 1999.

Statistica

All
MATLAB Answers

12 Domande
5 Risposte

File Exchange

4 File

Cody

0 Problemi
18 Soluzioni

RANK
5.256
of 300.364

REPUTAZIONE
9

CONTRIBUTI
12 Domande
5 Risposte

ACCETTAZIONE DELLE RISPOSTE
58.33%

VOTI RICEVUTI
9

RANK
2.814 of 20.934

REPUTAZIONE
599

VALUTAZIONE MEDIA
5.00

CONTRIBUTI
4 File

DOWNLOAD
22

ALL TIME DOWNLOAD
5331

RANK
26.540
of 168.407

CONTRIBUTI
0 Problemi
18 Soluzioni

PUNTEGGIO
191

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Treasure Hunt Participant
  • Thankful Level 3
  • Personal Best Downloads Level 1
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 2
  • GitHub Submissions Level 1
  • First Submission
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

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

oltre un anno fa | 0

Domanda


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

oltre un anno fa | 2 risposte | 6

2

risposte

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

quasi 2 anni fa | 0

| accettato

Domanda


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

quasi 2 anni fa | 2 risposte | 0

2

risposte

Domanda


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

quasi 2 anni fa | 2 risposte | 0

2

risposte

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

oltre 2 anni fa | 0

Risposto
Where should user preferences be stored?
MATLAB's setpref/getpref commands are the best solution on specific machine, and they persist across sessions.

quasi 3 anni fa | 0

| accettato

Risolto


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

circa 4 anni fa

Domanda


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

circa 5 anni fa | 1 risposta | 0

1

risposta

Domanda


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

oltre 5 anni fa | 0 risposte | 1

0

risposte

Risolto


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

quasi 6 anni fa

Inviato


SMASHtoolbox/release
Sandia Matlab AnalysiS Hierarchy

oltre 7 anni fa | 13 download |

0.0 / 5
Thumbnail

Domanda


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

oltre 7 anni fa | 0 risposte | 1

0

risposte

Inviato


Sandia Data Archive library
Functions for reading, writing, and probing SDA files

oltre 8 anni fa | 1 download |

0.0 / 5
Thumbnail

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

quasi 9 anni fa | 0

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

quasi 10 anni fa

Risolto


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


Add two numbers
Given a and b, return the sum a+b in c.

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Risolto


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

quasi 10 anni fa

Carica altro