Community Profile

photo

zoelle wong


Last seen: 2年以上 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Solver
  • Thankful Level 1

バッジを表示

Feeds

表示方法

回答済み
Refined Mesh with generateMesh() using PDE toolbox
Edit- found the reason why. Turns out I needed to install MATLAB 2021b and delete my current MATLAB version (2021a) since the PD...

2年以上 前 | 1

質問


Refined Mesh with generateMesh() using PDE toolbox
I'm trying to create a refined mesh on specific edges on my geometry with generateMesh(). My original program has the following ...

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

1

回答

解決済み


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

3年弱 前

解決済み


Find matching string from a list of strings
Write a function that returns a string that is a unique match (if it exists) of the string |inStr| from a list of strings |strLi...

3年以上 前

解決済み


Calculate the area of a triangle between three points
Calculate the area of a triangle between three points: P1(X1,Y1) P2(X2,Y2) P3(X3,Y3) these three points are the vert...

3年以上 前

解決済み


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

3年以上 前

解決済み


surrounded matrix
With a given matrix A (size m x n) create a matrix B (size m+2 x n+2) so that the matrix A is surrounded by ones: A = [1 2 ...

3年以上 前

解決済み


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

3年以上 前

解決済み


Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...

3年以上 前

解決済み


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

3年以上 前

解決済み


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

3年以上 前

解決済み


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

3年以上 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

3年以上 前

解決済み


Create a vector
Create a vector from 0 to n by intervals of 2.

3年以上 前

解決済み


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

3年以上 前

解決済み


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

3年以上 前

解決済み


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

3年以上 前

解決済み


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

3年以上 前

解決済み


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

3年以上 前

質問


M-file function
Hello! I am writing an Mfile script that calls a Mfile function to evaluate v(t). v(t) is given as a piecewise function and I h...

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

1

回答