John - MATLAB Central
photo

John


University of Southern California

2011 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB AnswersCodyFrom 02/11 to 03/25Use left and right arrows to move selectionFrom 02/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 質問
11 回答

Cody

0 問題
6 解答

ランク
1,856
of 297,775

評判
36

コントリビューション
1 質問
11 回答

回答採用率
100.0%

獲得投票数
8

ランク
 of 20,469

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
47,908
of 159,513

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

スコア
70

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • First Review
  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How to delete the row from cell array?
You can index out the rows like any standard array (the following code removes the second row): x = {1 2 3; 4 5 6; 7 8 9} ...

11年以上 前 | 2

回答済み
Loading a excel file in which I want to take only B, D not C , how can it be done?
The best way to do this is call xlsread() once (read in all the data) and index the data you need: data = xlsread('t...

11年以上 前 | 1

| 採用済み

解決済み


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

13年弱 前

解決済み


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

13年弱 前

解決済み


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

13年弱 前

解決済み


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

13年弱 前

解決済み


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

13年弱 前

解決済み


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

13年弱 前

回答済み
Executing two callbacks concurrently
I don't particularly care for this solution but it is one quick way to get at what you're trying to do (I think), hope it helps!...

13年弱 前 | 0

回答済み
Help removing columns from csv file
If you want to load in the data and pull out the third and fourth columns (just as an example) I'd do the following: [num txt...

13年以上 前 | 0

| 採用済み

回答済み
How do I generate n cubes to define a sphere?
To create the cubes and visualize them I would start with something like the following: <http://www.mathworks.com/matlabcentr...

13年以上 前 | 1

| 採用済み

回答済み
writing 1*5 char in one cell in excel
Perhaps the following would work: xlswrite('test.xls', cellstr(x)) Where "x" is a character array

13年以上 前 | 1

回答済み
MATLAB runtime
i would look at the help for 'waitbar' if you want some kind of indication of where the program is. in addition if you are using...

約14年 前 | 1

回答済み
How do I get system idle time in MATLAB?
Found this perl script that works, simply call perl('last-input.pl') in matlab use Win32::OLE; use Win32::API; ...

約14年 前 | 0

| 採用済み

質問


How do I get system idle time in MATLAB?
How do I go about getting the system idle time in MATLAB, I've searched around and cant find anything. Im using Windows XP x64. ...

約14年 前 | 1 件の回答 | 0

1

回答

回答済み
connecting mysql database to matlab
Perhaps you need something like this: <http://www.mathworks.com/products/database/ MATLAB Database Toolbox>

約14年 前 | 1

| 採用済み

回答済み
Creating M-file using Excel/Visual Basic
Do you have to use visual basic? In MATLAB you can use xlsread to load in the excel file and then save the loaded data into .mat...

約14年 前 | 1

| 採用済み

回答済み
Determining whether a point on earth (given latitude and longitude) is on land or ocean
Perhaps something like this could help: <http://www.mathworks.com/products/matlab/demos.html?file=/products/demos/shipping/ma...

約14年 前 | 0