photo

Daniel Dolan


Last seen: 1年以上 前 2009 年からアクティブ

Followers: 0   Following: 0

Using MATLAB since 1999.

統計

All
MATLAB Answers

12 質問
5 回答

File Exchange

4 ファイル

Cody

0 問題
18 解答

ランク
5,279
of 300,799

評判
9

コントリビューション
12 質問
5 回答

回答採用率
58.33%

獲得投票数
9

ランク
2,807 of 21,092

評判
602

平均評価
5.00

コントリビューション
4 ファイル

ダウンロード
9

ALL TIME ダウンロード
5351

ランク
27,285
of 171,134

コントリビューション
0 問題
18 解答

スコア
191

バッジ数
1

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • 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

バッジを表示

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

1年以上 前 | 0

質問


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

1年以上 前 | 2 件の回答 | 6

2

回答

回答済み
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 ...

約2年 前 | 0

| 採用済み

質問


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

約2年 前 | 2 件の回答 | 0

2

回答

質問


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

約2年 前 | 2 件の回答 | 0

2

回答

回答済み
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...

2年以上 前 | 0

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

約3年 前 | 0

| 採用済み

解決済み


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

4年以上 前

質問


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

5年以上 前 | 1 件の回答 | 0

1

回答

質問


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

5年以上 前 | 0 件の回答 | 1

0

回答

解決済み


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

6年弱 前

送信済み


SMASHtoolbox/release
Sandia Matlab AnalysiS Hierarchy

7年以上 前 | ダウンロード 3 件 |

0.0 / 5
Thumbnail

質問


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

8年弱 前 | 0 件の回答 | 1

0

回答

送信済み


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

9年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

回答済み
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 ...

約9年 前 | 0

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

解決済み


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

約10年 前

さらに読み込む