Community Profile

photo

埃博拉酱


Last seen: 29 dagar ago Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Knowledgeable Level 2
  • Thankful Level 3
  • Puzzler
  • Commenter
  • 5-Star Galaxy Level 2
  • GitHub Submissions Level 3
  • First Answer
  • Explorer
  • First Review
  • Personal Best Downloads Level 2
  • Leader
  • Speed Demon

View badges

Feeds

View by

Answered
Operator '+' is not supported for operands of type 'function_handle'.
Only symbolic functions can be added directly. You may need to refer to Symbolic Math Toolbox.

10 månader ago | 0

Question


Is there a way to map the GPU number of the gpuDevice to the GPU number in Windows Task Manager?
Our GPU server is shared by multiple people. I hope to avoid using the GPU that is being used by others. The main method is to c...

11 månader ago | 1 answer | 1

1

answer

Answered
Cannot clear mex with an existing DesktopWindowTarget
Although I don't know the principle, I solved the problem. Simply move the resource release code into the destructor of MexFunct...

12 månader ago | 0

| accepted

Question


Cannot clear mex with an existing DesktopWindowTarget
I'm trying to create a window and display a user-supplied image using the C++ MEX function: (Just a small snippet of code to ill...

12 månader ago | 1 answer | 0

1

answer

Answered
用image画图时,无法用caxis调节colorbar范围,使用的是R2019a版本
你需要改用imagesc

ungefär ett år ago | 0

| accepted

Answered
how can I reduce the computational time of a single for loop in a Matlab code
It seems that you are calling knnsearch twice in each loop to search for a single point in the point cloud. However, knnsearch c...

ungefär ett år ago | 0

Answered
I have data for each milli second. How can I average the 1000 samples and convert in to 1 sec? I got 322 sec data. 1K samples for each second.
You may want to use imresize: Table=readmatrix('ms_to_sec.csv'); Table=imresize(Table,[322,2]); Table(:,1)=1:322;

ungefär ett år ago | 0

Answered
Convert negative values to positive values in the graph
It depends on the meaning of negative values and how they are generated. From your graph, your data appears to be oscillating w...

ungefär ett år ago | 0

Answered
shannon entropy and entropy of grayscale
Entropy.m is open source, why don't you just check out its source code? edit entropy

ungefär ett år ago | 0

Answered
speed up for loop
When it comes to file I/O operations, parfor is usually not very helpful because the disk is always single-threaded. In contrast...

ungefär ett år ago | 0

| accepted

Answered
in this linear matrix. q_1, q_2....the input matrix are 1*11 double. all the F2y,F3x...in the out put are 1*11 double. I want to solve the Sol for each value of input ,output
Sol=cell(1,11); for a=1:11 Sol{a}=GetOneSol(q_1(a),q_2(a),q_3(a),q_4(a),q_5(a),q_6(a),q_7(a),q_8(a),q_9(a),q_10(a),q_11(a)...

ungefär ett år ago | 0

Answered
How to push data to a website?
It depends on how your website server is configured. No one can tell you how to push messages to the server without knowing the ...

ungefär ett år ago | 0

Answered
C++ API: How to convert ArrayElementRef to Array?
In MATLAB, an element of an array is also an array. However, in C++, an element is not an array. matlabArray[i] is taking an el...

ungefär ett år ago | 0

| accepted

Answered
Please help to solve: Index in position 1 exceeds array bounds. Index must not exceed 1.
Your audio_signal is an 1×n row vector but you're trying to get its start_index:end_index rows.

ungefär ett år ago | 0

Answered
"Input parser" vs. new "arguments" definition
The biggest advantage of the arguments block is readability, but it is far less flexible than varargin. People who are not famil...

ungefär ett år ago | 1

Answered
textscan(fid,'%s','delimiter',{'\r','\n'}) lost a Tab located in the very beginning of 1st row of text file
Specify Whitespace='' in textscan.

ungefär ett år ago | 1

| accepted

Answered
separate y axis on right and left (even and odd data) with IMAGESC
Preprocess your data like: reshape(RateR_new.Flux(:,1),2,[])' Not sure if this is what you want. If not, it's best to draw a d...

ungefär ett år ago | 0

| accepted

Answered
Getting Help to open in new tab of the default browser as opposed to built-in browser
I was never able to invode the OS browser with F1. Can you give a definite example to prove that you are not mistaken?

ungefär ett år ago | 0

Answered
How do I multiply a given function handle with the independent variable?
Use symfun and int in Symbolic Math Toolbox if you want to do integrals.

ungefär ett år ago | 0

Answered
Am I running in parallel? (best way to check)
parallel.internal.pool.isPoolThreadWorker||~isempty(getCurrentJob)) This code can robustly return true if and only if run on a ...

ungefär ett år ago | 4

Answered
How to Generate Database from Cell array In Table form in MATLAB
cell2table

ungefär ett år ago | 0

Answered
Saving output files as input file names while running though a for loop
filenames = struct2table(dir('*.csv')).name; %%% Start looping over files for k= 1:numel(filenames) X= readmatrix(filenam...

ungefär ett år ago | 0

Answered
Automatically create variable names
NameIndex=1; Value=2; eval(sprintf('Name_%u=%d',NameIndex,Value)); This is possible by eval but as mentioned in the comments ...

ungefär ett år ago | 0

Answered
MEX file debugging with MS Visual Studio
As @Friedrich said, MEX file functions are loaded dynamically, so the function needs to be called once in MATLAB to load symbols...

ungefär ett år ago | 0

Answered
Compare strings which contains the same pattern by ignoring case sensitivity and some expressions like underscores
You might remove those expressions to be ignored and unify the strings all to lowercase before doing actual comarison.

nästan 2 år ago | 0

| accepted

Answered
How to I create variables with different names in the workspace using for loop?
You're too new to MATLAB to write any actual code. Learn your first course on https://matlabacademy.mathworks.com/ before doing...

nästan 2 år ago | 0

Answered
数值索引和逻辑索引哪个更快?
测试方法 测试函数: function IndexingTest(FullNumber,SelectNumber) Set=false(FullNumber,1,'like',logical(FullNumber)); Index=cast(ran...

nästan 2 år ago | 0

| accepted

Question


数值索引和逻辑索引哪个更快?
Index=find(Array==Element); Array(Index)=0 上述代码往往会被提示可以省略find,直接使用逻辑索引而不是数值索引。 省略一个函数调用当然会更快,这不难理解。 但如果Index还将要继续用于后续其它数组的索引...

nästan 2 år ago | 1 answer | 1

1

answer

Answered
无法加载产品文件。产品文件与输入文件必须在同一文件夹内
请提供错误截图

nästan 2 år ago | 0

Answered
gui中,使用ginput获取屏幕上的点,响应速度越来越慢
你这个函数本身不会造成响应变慢,应该是其它代码的问题。

nästan 2 år ago | 0

Load more