Santhosh A V
Followers: 0 Following: 0
統計
All
Feeds
回答済み
MATLAB Support Package for Android Sensors the problem of setting up
Hi yvfei sun The Support Package for Android and iOS have been removed for all releases back in September 2019. The current opt...
MATLAB Support Package for Android Sensors the problem of setting up
Hi yvfei sun The Support Package for Android and iOS have been removed for all releases back in September 2019. The current opt...
5年弱 前 | 0
回答済み
Error using syms command
Hi Alexander I understand that you are receiving mupadmex.mexw64 error. when you are running syms x. Can you please confirm if ...
Error using syms command
Hi Alexander I understand that you are receiving mupadmex.mexw64 error. when you are running syms x. Can you please confirm if ...
5年弱 前 | 0
回答済み
SGP4 Model Libraries in Simulink
Hi Jia, SGP4 is a file exchange submission. You may try contacting the Author of the file for further support on this. Th...
SGP4 Model Libraries in Simulink
Hi Jia, SGP4 is a file exchange submission. You may try contacting the Author of the file for further support on this. Th...
5年弱 前 | 0
回答済み
symbolic math toolbox installed but it does not work
Hi Lucie The error message is received because the 'syms' function from the Symbolic Math Toolbox is shadowed by the 'syms' f...
symbolic math toolbox installed but it does not work
Hi Lucie The error message is received because the 'syms' function from the Symbolic Math Toolbox is shadowed by the 'syms' f...
5年弱 前 | 1
回答済み
Error on downloading Raspbian OS Image
Hi Antonio I am able to download the mathworks_raspbian_R19.2.0.zip from the same link. Thanks Santhosh
Error on downloading Raspbian OS Image
Hi Antonio I am able to download the mathworks_raspbian_R19.2.0.zip from the same link. Thanks Santhosh
5年弱 前 | 0
回答済み
Deleting files downloaded during partial installation
Hi Stuart, To uninstall MATLAB drag the MATLAB icon from your applications folder to the trash. Please go through the below ...
Deleting files downloaded during partial installation
Hi Stuart, To uninstall MATLAB drag the MATLAB icon from your applications folder to the trash. Please go through the below ...
5年弱 前 | 0
回答済み
Why is MATLAB trying to connect to X11 server even when started with -nodisplay ?
Hi Naor, Can you let me know whether the X11 forwarding is enabled in your Putty Configuration. Thanks Santhosh
Why is MATLAB trying to connect to X11 server even when started with -nodisplay ?
Hi Naor, Can you let me know whether the X11 forwarding is enabled in your Putty Configuration. Thanks Santhosh
5年弱 前 | 0
回答済み
What toolbox should I add to my matlab path (R2015a) so to do the AlphaSim correction of my data? I tried Resting-State fMRI Data Analysis Toolkit plus V1.22 (RESTplus V1.22) but its not working, its says undefined variable and wont generate anything
Hi Arbesa, I understand that you want to know which toolbox to install for Alphasim. RESTplus v1.22 is a third-party toolk...
What toolbox should I add to my matlab path (R2015a) so to do the AlphaSim correction of my data? I tried Resting-State fMRI Data Analysis Toolkit plus V1.22 (RESTplus V1.22) but its not working, its says undefined variable and wont generate anything
Hi Arbesa, I understand that you want to know which toolbox to install for Alphasim. RESTplus v1.22 is a third-party toolk...
5年弱 前 | 0
回答済み
Which version of Microsoft Visual C++ Redistributable is required for MCR 8.5?
Hi Thomas, Please find the supported compilers information in the link below. https://www.mathworks.com/content/dam/mathwork...
Which version of Microsoft Visual C++ Redistributable is required for MCR 8.5?
Hi Thomas, Please find the supported compilers information in the link below. https://www.mathworks.com/content/dam/mathwork...
5年弱 前 | 0
解決済み
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...
5年以上 前
解決済み
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
5年以上 前
解決済み
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...
5年以上 前
解決済み
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
5年以上 前
解決済み
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 ...
5年以上 前
解決済み
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
5年以上 前
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
5年以上 前
解決済み
The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...
5年以上 前
解決済み
De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...
5年以上 前
解決済み
Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...
5年以上 前
解決済み
Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...
5年以上 前
解決済み
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
5年以上 前
解決済み
Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...
5年以上 前
解決済み
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
5年以上 前
解決済み
Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...
5年以上 前
解決済み
Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....
5年以上 前
解決済み
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
5年以上 前
解決済み
Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...
5年以上 前
解決済み
Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...
5年以上 前