![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/26948686_1657713628535_DEF.jpg)
Rajeev
MathWorks
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
17 回答
ランク
of 157,897
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Can someone help me generate numerical values for this sample problem using bvp4c solver?
Can you try adding the line: y_values(i) = interp1(sol.x, sol.y(1,:), g); in the loop?
Can someone help me generate numerical values for this sample problem using bvp4c solver?
Can you try adding the line: y_values(i) = interp1(sol.x, sol.y(1,:), g); in the loop?
2年弱 前 | 1
| 採用済み
回答済み
How can I open TCP/IP server in MATLAB 2020b?
You can create a TCP/IP server using the 'java.net.ServerSocket' class in MATLAB. % Define the port number for the server por...
How can I open TCP/IP server in MATLAB 2020b?
You can create a TCP/IP server using the 'java.net.ServerSocket' class in MATLAB. % Define the port number for the server por...
2年弱 前 | 1
回答済み
Identify triangular faces of a mesh
To highlight the triangle with areas greater than, let's say 'k', we need to first compute all the areas of the triangles given ...
Identify triangular faces of a mesh
To highlight the triangle with areas greater than, let's say 'k', we need to first compute all the areas of the triangles given ...
2年弱 前 | 0
| 採用済み
回答済み
No degradation color on the 3D plot
It seems like the issue might be with the way the contour levels are set using: % Original contour levels L=[Lmin,0.00001,0.00...
No degradation color on the 3D plot
It seems like the issue might be with the way the contour levels are set using: % Original contour levels L=[Lmin,0.00001,0.00...
2年弱 前 | 0
回答済み
Matlab engine starting error in Python (docker)
The error message indicates that the connection to the MATLAB engine has been lost. This can happen for a number of reasons that...
Matlab engine starting error in Python (docker)
The error message indicates that the connection to the MATLAB engine has been lost. This can happen for a number of reasons that...
2年弱 前 | 0
回答済み
Error while executing 'osqp' class destructor
This error message indicates that MATLAB is unable to find the "osqp_mex" function, which is required by the "osqp" class destru...
Error while executing 'osqp' class destructor
This error message indicates that MATLAB is unable to find the "osqp_mex" function, which is required by the "osqp" class destru...
2年弱 前 | 0
回答済み
Approximate Value Using Taylor Polynomial
You can first subsitute x in T using the 'subs' function and then use the 'double' to convert the answer to double precision typ...
Approximate Value Using Taylor Polynomial
You can first subsitute x in T using the 'subs' function and then use the 'double' to convert the answer to double precision typ...
約2年 前 | 0
回答済み
connect marker with lines
You can use the '-' in front of the marker to join the points with a line. Example: plot(i,Max_Temp30(1,i),'-o','MarkerFaceColo...
connect marker with lines
You can use the '-' in front of the marker to join the points with a line. Example: plot(i,Max_Temp30(1,i),'-o','MarkerFaceColo...
約2年 前 | 0
回答済み
Highlight 2 lowest weight edges out of 3 from node
Hi, You can pair the edges with their weights and then apply "mink" to get the edges with least weights. Creating a function w...
Highlight 2 lowest weight edges out of 3 from node
Hi, You can pair the edges with their weights and then apply "mink" to get the edges with least weights. Creating a function w...
約2年 前 | 0
| 採用済み
回答済み
Trying to discover both First and Second Shortests paths but returns only last vertex
Hi, It looks like the if condition to update the distances of neighbours is never executed because the 'v' you selected is inco...
Trying to discover both First and Second Shortests paths but returns only last vertex
Hi, It looks like the if condition to update the distances of neighbours is never executed because the 'v' you selected is inco...
約2年 前 | 0
回答済み
Is there a way to get result of doc command as an HTML/XML object?
As of now, the "doc" command does not return any kind of object and hence there is no result to store.
Is there a way to get result of doc command as an HTML/XML object?
As of now, the "doc" command does not return any kind of object and hence there is no result to store.
約2年 前 | 0
回答済み
Generate three datasets with given details
This code is correct if you want to generate data with the required metrics. You can verify the results by using the "mean" and...
Generate three datasets with given details
This code is correct if you want to generate data with the required metrics. You can verify the results by using the "mean" and...
約2年 前 | 0
回答済み
Predictandupdatestate and train data in lstm
The reason for offsetting the dependent and independent variables of the training data is that for the current time step, we wan...
Predictandupdatestate and train data in lstm
The reason for offsetting the dependent and independent variables of the training data is that for the current time step, we wan...
約2年 前 | 0
| 採用済み
回答済み
how to evaluate my result knn code using confusion matrix
There are two requirements for the "confusionmat" function that are not being fullfilled in your matlab script: The type of the...
how to evaluate my result knn code using confusion matrix
There are two requirements for the "confusionmat" function that are not being fullfilled in your matlab script: The type of the...
約2年 前 | 0
| 採用済み
回答済み
Unable to run Simulink
Launch MATLABWindow.exe and check the error >> cd (matlabroot) % ex. cd 'C:\Program Files\MATLAB\R2022b' >> !./bin/win64/MATL...
Unable to run Simulink
Launch MATLABWindow.exe and check the error >> cd (matlabroot) % ex. cd 'C:\Program Files\MATLAB\R2022b' >> !./bin/win64/MATL...
約2年 前 | 0
回答済み
Python virtual environment in Matlab
This is a known issue that the development team has been notified of. In the meantime, I have a temporary workaround for your ...
Python virtual environment in Matlab
This is a known issue that the development team has been notified of. In the meantime, I have a temporary workaround for your ...
約2年 前 | 1
回答済み
Extracting testing and training data from a single dataset
Hi Rahul, Logical Indexing can be used to extract the required data from the array. Assuming that the name of the matrix is "l...
Extracting testing and training data from a single dataset
Hi Rahul, Logical Indexing can be used to extract the required data from the array. Assuming that the name of the matrix is "l...
2年以上 前 | 0