解決済み


Remove Unique Elements
Given a list of integers, we want to keep only the non-unique elements in this list. To do this, we need to remove all the uniqu...

3ヶ月 前

解決済み


Out-of-Place Elements Count
Determine the number of elements in a list of integers that are not in their original order after sorting the list in ascending ...

3ヶ月 前

解決済み


Largest Rectangle Area in a Histogram
Given a histogram represented by an array of integers, e.g., [2, 1, 4, 5, 1, 3, 3] : find the maximum area of a rectangle tha...

3ヶ月 前

解決済み


Maximizing Stock Profit
As a stock exchange broker focusing on a single transaction, your goal is to maximize profit by buying a stock at a low price an...

3ヶ月 前

解決済み


Spreadsheet Column Number
Spreadsheet uses an alphabetic naming system for columns, starting with 'A', 'B', 'C', etc. The column names continue like 'AB',...

3ヶ月 前

解決済み


Secret Message and Acrostic
One of the simplest ways to hide a message involves utilizing uppercase letters. Given a text, collect all uppercase letters in...

3ヶ月 前

解決済み


snake_case to CamelCase convention
The snake_case naming convention writes words in lowercase and separates them with underscores. In CamelCase convention, the fir...

3ヶ月 前

解決済み


CamelCase to snake_case convention
The CamelCase naming convention capitalizes the first letter of each word. In snake_case convention, words are written in lowerc...

3ヶ月 前

解決済み


Instructions Following
Complete the function follow(s) which, for a given string (containing only the letters 'f', 'b', 'l', 'r'), calculates the final...

3ヶ月 前

解決済み


Interval Compression
Given a set of integers, the task is to create a list of closed intervals where each interval includes its endpoints. For exampl...

3ヶ月 前

回答済み
Why I am not getting the same result for an integral of a piecewise function?
1 - It should be aux1 - (aux2 + aux3) 2 - The function is not vectorized properly, which provides incorrect results. I have mod...

3ヶ月 前 | 0

| 採用済み

回答済み
array generation using logics.
x = [0 10 20 30 0 10 20 30 40 0 10 20 30 40 50 0 10] y = x; idx = [1 find(diff(x)~=10)+1 numel(x)] for k=1:numel(idx)...

3ヶ月 前 | 0

回答済み
How programmatically create an array from variable-length vectors?
Here's a method to import data from a sequence of files - %Read all the mat files in the directory Files = dir('*.mat'); %...

3ヶ月 前 | 0

回答済み
How to substitute a variable into a syms function?
Define the variable as a symbolic variable and then substitute - syms Vpo Von Dp Dn ws Lp Cps Ll Lm Vsecm Isec_real Isec_imag ...

3ヶ月 前 | 0

| 採用済み

回答済み
How do I change the format of symbolic output
Change the symbolic preference of Type-setting as follows - syms x y sol = solve(y-x^2,x) %Preference changed (Default v...

3ヶ月 前 | 0

| 採用済み

回答済み
Turn sequence into a loop
A better approach would be to vectorize, see below. (I assume all the arrays to be used have compatible dimensions for operation...

3ヶ月 前 | 0

回答済み
如何得到361x91数组中重复最大值的位置
Use find - %Sample data mat = magic(4); mat = [mat; 1 4 9 16] %Get the maximum value val = max(mat, [], 'all') %% Find th...

4ヶ月 前 | 1

| 採用済み

回答済み
Read text file line by line to columns
Use readmatrix (available from R2019a onwards) to read the data and transform it as per need - in = readmatrix('RANCHOD - Copy...

4ヶ月 前 | 2

回答済み
行列の要素数を変更し、それぞれを違う行列として表示するにはどうすればよいですか
Preallocate a cell array, define each cell element accordingly and use indexing to access the data - %Number of arrays n = 10...

4ヶ月 前 | 0

回答済み
Where can I find the documentation for polling methods applicable to paretosearch?
From the User's Guide of Global Optimization Toolbox, available here - https://in.mathworks.com/help/pdf_doc/gads/index.html (Pa...

4ヶ月 前 | 0

| 採用済み

回答済み
Subs does not work in my code.
You can vectorize operations in the code - function [sMnew] = Cubic(k,M) n = 3*k+1; x = sym('x'); c = sym( 'c', [1 M+3]); ...

4ヶ月 前 | 0

回答済み
Randomly giving "ans" value but i dont want that
"How can i prevent the creation of the "ans" ?" When calling a function with multiple outputs without specifying the outputs, o...

4ヶ月 前 | 1

回答済み
How to plot points with corresponding colour
(Assuming there are only red and blue colors for the plot) Use logical indexing - %Check which elements of B are red idx = str...

5ヶ月 前 | 1

| 採用済み

回答済み
使用limit函数求极限提示不允许不同类型之间赋值,怎么解决?
I scrolled across the image - jie is already defined as a struct (possibly in the code before this particular lines), thus you c...

5ヶ月 前 | 0

| 採用済み

回答済み
How can I plot graph with lines of different color each using for loop?
You are over-writing the figure in each iteration, thus you only get the plot for a single iteration (i.e. the last one). Call ...

5ヶ月 前 | 0

回答済み
How to create random sequence?
Use randn to generate the sequences and modify it accordingly - avg = 817e-9; sd = 10e-9; N = 50; seq = avg + sd*randn(1,...

5ヶ月 前 | 0

| 採用済み

回答済み
I need to make a function for compound interest using for
In case you want the final output - format shortg money=1000; for k=1:10 money=money*1.08; end money In case you w...

5ヶ月 前 | 0

| 採用済み

回答済み
How to extract data from a 3D Array?
Use logical indexing - %Sample data p = 5; q = 6; r = 4; y = rand(p,q,r)-1; y(:, :, [2 r+1]) = zeros(p,q,2) %Check i...

5ヶ月 前 | 1

回答済み
for構文
That is because you are overwriting the files in each iteration of the for loop. Pre-allocate the output to assign data to it a...

5ヶ月 前 | 2

| 採用済み

回答済み
'입력 인수가 부족합니다' 이 오류를 해결하고 싶어요.
I have made some changes to your code, please check the code below and refer to the comments for information - syms('x') %%...

5ヶ月 前 | 0

| 採用済み

さらに読み込む