社区资料

photo

Geoff McVittie

上一次见面:7天前|Active since 2014

Statistics

全部
  • GitHub Submissions Level 2
  • 5星银河级4
  • 个人最佳下载级别3
  • Editor's Pick
  • 首次审查
  • First Submission
  • Revival Level 2
  • First Answer
  • 求解器

查看徽章

Content Feed

查看

Submitted


GenerateJavaScriptUsingMATLABCoder
Create JavaScript and WebAssembly apps and libraries from MATLAB projects using MATLAB Coder.

8 months ago | 29 downloads |

Thumbnail

Submitted


桌面码头客户端的MATLAB接口
A set of MATLAB functions to create and manage Docker images and containers through the Desktop Docker Client.

1年前|6个下载|

Submitted


Biolib-Matlab-Coder-Javascript-Toolchain
A toolchain to create BioLib applications from MATLAB.

1年前|1 download |

Thumbnail

Answered
Is it possible to check for existence of fields in nested structures with isfield in MATLAB 8.1 (R2013a)?
对于MATLAB的以后版本,另一种策略是创建您自己的Issubfield功能。Issubfield的优势是没有...

2年前|0

Answered
How can I use C++ classes in my MATLAB functions and generate code using MATLAB Coder?
使用标准库与C ++类和方法交互的解决方案,在功能库中可用...

3 years ago | 4

Answered
MATLAB和新的网络技术
This toolbox on the MathWorks File Exchange (Generate JavaScript Using MATLAB Coder - File Exchange - MATLAB Central) can compil...

3 years ago | 0

Answered
Deploying MATLAB Web App to the Internet
As another possibility, this toolbox on the MathWorks File Exchange (Generate JavaScript Using MATLAB Coder - File Exchange - MA...

3 years ago | 0

Answered
How to connect mathlab code to php in my web application?
This toolbox on the MathWorks File Exchange (Generate JavaScript Using MATLAB Coder - File Exchange - MATLAB Central) can compil...

3 years ago | 0

Answered
是否可以从Web浏览器运行MATLAB代码????
This toolbox on the MathWorks File Exchange (Generate JavaScript Using MATLAB Coder - File Exchange - MATLAB Central) can compil...

3 years ago | 1

解决了


将所有整数从1到2^n总和
鉴于数字x,y必须是所有整数从1到2^x的总和。例如,如果x = 2,则y必须为1+2+3+4 = 10。

8 years ago

解决了


Bullseye Matrix
给定n(总是奇数),返回输出a具有数字1至(n+1)/2的同心环围绕中心点。考试...

8 years ago

解决了


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of

8 years ago

解决了


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

8 years ago

解决了


Remove the vowels
删除给定短语中的所有元音。示例:输入s1 ='杰克和吉尔上山'输出s2是'jck nd jll wn ...

8 years ago

解决了


删除出现NAN的任何行
Given the matrix A, return B in which all the rows that have one or more

8 years ago

解决了


Most nonzero elements in row
给定矩阵A,返回具有最非零元素的行的索引r。假设总会有一排...

8 years ago

解决了


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

8 years ago

解决了


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

8 years ago

解决了


pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

8 years ago

解决了


如何在不使用查找功能的情况下找到元件在向量中的位置
写一个函数posx = findposition(x,y)其中x是向量,而y是您要搜索的数字。示例:鳍...

8 years ago

解决了


细胞细木工
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

8 years ago

解决了


反向矢量
反转矢量元素。示例:输入x = [1,2,3,4,5,6,7,8,9]输出y = [9,8,7,6,5,4,3,2,1]

8 years ago

解决了


经过时间
Given two date strings d1 and d2 of the form yyyy/mm/dd HH:MM:SS (assume hours HH is in 24 hour mode), determine how much time, ...

8 years ago

解决了


寻找完美的正方形
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

8 years ago

解决了


掷骰子!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

8 years ago

解决了


返回N的3N+1序列
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

8 years ago

解决了


求和数字
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

8 years ago

解决了


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

8 years ago

解决了


创建时间表
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

8 years ago

解决了


Fibonacci sequence
计算第n个斐波那契号。给定n,返回f,其中f = fib(n)和f(1)= 1,f(2)= 1,f(3)= 2,...示例:inpu ...

8 years ago

Load more