photo

Daniel Dolan


Last seen: mehr als ein Jahr vor Aktiv seit 2009

Followers: 0   Following: 0

Nachricht

Using MATLAB since 1999.

Statistik

All
MATLAB Answers

12 Fragen
5 Antworten

File Exchange

4 Dateien

Cody

0 Probleme
18 Lösungen

RANG
5.279
of 300.763

REPUTATION
9

BEITRÄGE
12 Fragen
5 Antworten

ANTWORTZUSTIMMUNG
58.33%

ERHALTENE STIMMEN
9

RANG
2.808 of 21.082

REPUTATION
601

DURCHSCHNITTLICHE BEWERTUNG
5.00

BEITRÄGE
4 Dateien

DOWNLOADS
8

ALL TIME DOWNLOADS
5349

RANG
27.259
of 170.923

BEITRÄGE
0 Probleme
18 Lösungen

PUNKTESTAND
191

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 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

Abzeichen anzeigen

Feeds

Anzeigen nach

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

mehr als ein Jahr vor | 0

Frage


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

mehr als ein Jahr vor | 2 Antworten | 6

2

Antworten

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

etwa 2 Jahre vor | 0

| akzeptiert

Frage


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

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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

etwa 2 Jahre vor | 2 Antworten | 0

2

Antworten

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

mehr als 2 Jahre vor | 0

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

etwa 3 Jahre vor | 0

| akzeptiert

Gelöst


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

mehr als 4 Jahre vor

Frage


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

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 5 Jahre vor | 0 Antworten | 1

0

Antworten

Gelöst


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

fast 6 Jahre vor

Gesendet


SMASHtoolbox/release
Sandia Matlab AnalysiS Hierarchy

mehr als 7 Jahre vor | 2 Downloads |

0.0 / 5
Thumbnail

Frage


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

mehr als 7 Jahre vor | 0 Antworten | 1

0

Antworten

Gesendet


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

fast 9 Jahre vor | 1 Download |

0.0 / 5
Thumbnail

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

etwa 9 Jahre vor | 0

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Gelöst


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

etwa 10 Jahre vor

Mehr laden