
Walter Roberson
I do not do free private consulting. If you want to bring my attention to something, send a link to the MATLAB Answers location. I am currently caught up to T0099119; if you are waiting on a reply from me for an older issue, please send me a reminder.
C, MATLAB, Shell, Perl, Fortran
Spoken Languages:
English
Statistics
34 質問
54,784 回答
0 問題
1 解答
ランク
1
of 257,855
評価
122,227
貢献
34 質問
54,784 回答
回答採用率
52.94%
獲得投票数
15,899
ランク
76,956
of 110,083
貢献
0 問題
1 解答
スコア
20
バッジ数
1
貢献
0 投稿
貢献
0 パブリック チャネル
平均評価
貢献
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How can we convert a number into a string value with the exact number of digits present in the number?
The digits "actually present" in the number assigned are 0.0199154999999999991755483819133587530814111232757568359375 The n...
22分 前 | 0
An error "Assumed incident matrix must contained negative value for link out." which occurs in creating a graph object.
You are using https://www.mathworks.com/matlabcentral/fileexchange/12648-graph-package That code does not support passing in ...
約5時間 前 | 0
i can't figure out what to do , and it's urgent , need your help please !
https://github.com/petercorke/robotics-toolbox-matlab
約9時間 前 | 0
round to 2 decimal places but still have more than 2 decimal places when storing
2 and 100 are relatively prime, so it is not possible for any finite base 2 fractional representation to *exactly* represent 1/1...
約12時間 前 | 1
plot textdata with NaN
T = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1002155/owid-covid-data_2020-21.csv', 'VariableNam...
約15時間 前 | 0
how to extract the watermark after decryption. please help I am getting an error in watermark extraction steps. Thank you in advance
for i=1:1:70000 x(i+1)=l*x(i)*(1-x(i))+b*y(i)*y(i)*x(i)+a*z(i)*z(i)*z(i); y(i+1)=l*y(i)*(1-y(i))+b*z(i)*z(i)*y(i)+a...
1日 前 | 0
Iterative solution to approach desired value
fzero() or fsolve(). If you need to be able to look at the complete source code then https://www.mathworks.com/matlabcentral...
1日 前 | 0
Matlab gives back ''symsum'' formula but not a value
Wolframalpha calculates the first sum numerically, not able to find a closed form for it. What reason do you have to expect t...
1日 前 | 0
Baseline Criteria: How to read discrete data from excel rather than continuous data.
https://www.mathworks.com/help/simulink/slref/fromspreadsheet.html configure Interpolation to "zero order hold"
1日 前 | 0
Image file saving location
outdir = 'C:\Users\leehj\Desktop\aaa'; for i = 1:5 h = imagesc(X, Y, Z(:,:,i)); xlim([-2 2]); ylim([-1 1]); fname ...
1日 前 | 0
| 採用済み
Can I use the Guide function of MATLAB to create GUI in Raspberry Pi?
No, not a chance. What is supported for the Raspberry Pi is to use Simulink to send images (possibly computed) to the Raspberry...
1日 前 | 0
| 採用済み
So i have a vector of [1x2e6] of frequency data , so I would like to create a loop so that it stores 10 0.1ms (millisecond) this frequency data and fprint it.
Number_per_group = 10; in_groups = buffer(YourSignal, Number_per_group); fmt = [repmat('%8.5f ', 1, Number_per_group - 1), '...
1日 前 | 0
Since when has it been possible to dot-index the output of a class method?
Since R2019b. https://www.mathworks.com/help/matlab/release-notes.html?category=language-programming&rntext=&startrelease=R2019...
1日 前 | 2
| 採用済み
cant read the serial port!!!
https://www.mathworks.com/help/matlab/ref/serialport.html feof() is not defined for serialport objects. It was defined for se...
1日 前 | 0
I want to design a divider using cordic function, for high number / low number (30/2) can anyone help me.?
Do not start with i=1. Start with i being the negative of the number of bits before the decimal place. I believe that your el...
2日 前 | 0
| 採用済み
magnetic resonance spectroscopy imaging
* use a higher quality device with a stronger magnetic field * have the device calibrated by experts * make sure that the room...
2日 前 | 0
| 採用済み
How can I solve this error about nargout function?
(That looks like GUIDE code) You are trying to do code generation with variable numbers of output. MATLAB Coder is not able t...
2日 前 | 0
How to plot 2D location vs corresponding data in MATLAB
You can create a triangulation object and then use trimesh() to plot the data. Or you can create a scatteredInterpolant() obj...
2日 前 | 0
Simulink fixed-step size protected variable name
"Is there any protected variable name for the Fixed-step size solver property pane that can be used in a block?" No, there is...
2日 前 | 0
Why do I receive an error message "archive is not a ZIP archive" during MATLAB installation on Linux?
In current MATLAB versions, a downloader is used that downloads archives as required; when using the downloader, the error just ...
2日 前 | 0
Error installing R2016b: archive is not a ZIP archive
In current MATLAB versions, a downloader is used that downloads archives as required; when using the downloader, the error just ...
2日 前 | 0
How can I plot the population before evaluating fitness in Matlab GA?
You cannot do that using ga() . ga() will never pass the state to the fitness function. You are also assuming that ga() is cr...
2日 前 | 0
| 採用済み
Now my question what should I add in that code to make the code display 0 on the values less than 0 because now with my code it goes down to the negative values.Thank you.
You should be multiplying logical conditions, not adding them.
2日 前 | 0
| 採用済み
Matlab keeps shutting down while my program is running
One thing I would check is for overheating <https://www.bestmaccleaner.com/mac-temperature-monitor/> I also suggest testing...
2日 前 | 0
Error in appliying split apply
Sometimes the cause of this is having used a function such as max() that operates along the first non-scalar dimension, together...
3日 前 | 0
How do I manipulate a large row and column datafile and convert each of many bytes to decimal from HEX
Use readlines(), which will return back a string array, one entry per line. Extract the appropriate indices. arrayfun() a ssca...
3日 前 | 0
elemental wise function of any kind not functioning
Give the command format long g and try again. You have format short in effect by default. format does not change the ans...
3日 前 | 1
How to get MATLAB to process the files specified in batch
You can have the code call uigetdir() if you want to prompt the user for the directory name. Or you can make the main functio...
3日 前 | 0
Help please, I want to avoid a warning message.
Upgrade your release. That title is fine in current releases. Question: why are you using \quad there? Why add space at the e...
4日 前 | 0