統計
All
Feeds
回答済み
How do I set a seed to generate different random initial numbers and storing them
rng(1,'twister'); % init generator for random repeatable with seed 1 s = rng; % save generator settings as s for kk = 1: Iter...
How do I set a seed to generate different random initial numbers and storing them
rng(1,'twister'); % init generator for random repeatable with seed 1 s = rng; % save generator settings as s for kk = 1: Iter...
4年以上 前 | 0
解決済み
Find the stride of the longest skip sequence
We define a _skip sequence_ as a regularly-spaced list of integers such as might be generated by MATLAB's <http://www.mathworks....
5年以上 前
解決済み
Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...
5年以上 前
回答済み
Loop in solve system of nonlinear equations
By calling the index of R in the for loop you should be able to save the XYA in an array so that you have the solutions for all ...
Loop in solve system of nonlinear equations
By calling the index of R in the for loop you should be able to save the XYA in an array so that you have the solutions for all ...
5年以上 前 | 0
回答済み
disp gives wrong format
I was not able to recreate the issue that you described. One thing to note is depending on your settings it could be outputing a...
disp gives wrong format
I was not able to recreate the issue that you described. One thing to note is depending on your settings it could be outputing a...
5年以上 前 | 0
回答済み
from python to matlab
https://www.mathworks.com/help/matlab/matlab-engine-for-python.html I believe you would want to utilize the matlab engine. If y...
from python to matlab
https://www.mathworks.com/help/matlab/matlab-engine-for-python.html I believe you would want to utilize the matlab engine. If y...
5年以上 前 | 0
| 採用済み
回答済み
from python to matlab
I think you might want to check this out: https://www.mathworks.com/help/matlab/matlab_external/pass-data-to-matlab-from-python...
from python to matlab
I think you might want to check this out: https://www.mathworks.com/help/matlab/matlab_external/pass-data-to-matlab-from-python...
5年以上 前 | 0
解決済み
Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...
5年以上 前
解決済み
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...
5年以上 前
解決済み
Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...
5年以上 前
解決済み
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
5年以上 前
解決済み
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
5年以上 前
解決済み
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
5年以上 前
解決済み
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...
5年以上 前
回答済み
Matlab Function in Simulink not allowing fortran scientific notation?
This was successfully addresed in a bug fix and update to 2019a.
Matlab Function in Simulink not allowing fortran scientific notation?
This was successfully addresed in a bug fix and update to 2019a.
5年以上 前 | 0
| 採用済み
解決済み
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
約6年 前
解決済み
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...
約6年 前
解決済み
Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.
約6年 前
解決済み
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
約6年 前
解決済み
06 - Matrix Equations 3
Define the matrices _aMat_, _bMat_, and _cMat_: <<http://samle.dk/STTBDP/Assignment1_3a.png>> ( _aMat_ = 9x9 matrix full o...
約6年 前
解決済み
Determine Whether an array is empty
Input a matrix x, output y is TRUE if x is empty, otherwise FALSE.
約6年 前
解決済み
Count photos
Given n people, everyone must have pictures taken with everyone, each photo includes only two persons, please count the total nu...
約6年 前
解決済み
Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...
約6年 前
解決済み
Matlab Basics - y as a function of x
Write a function to calculate y as a function of x, such that y = 6x^2 + 5x - 2
約6年 前
解決済み
Find the area of a triangle
Given a triangle with a base b and height h, return the triangle area.
約6年 前
解決済み
Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...
約6年 前
解決済み
Geometric series
Find the sum, given the first term t1, the common ratio r, and number of terms n. Examples If input t1=1, r=1, n=7 the...
約6年 前