Peter Cook
Followers: 0 Following: 0
統計
All
Feeds
回答済み
Invalid MEX-file missing dependencies libraries,"cudart64_75.dll" and "nppi64_75.dll" missing ,I Actually wrote the program for cropping of the video frames in rectangle bounding boxes, it is throwing these error.how can i resolve this error?
It's hard to tell your specific problem, but here's a couple suggestions. If you compile the cuda mex in Visual Studio instead ...
Invalid MEX-file missing dependencies libraries,"cudart64_75.dll" and "nppi64_75.dll" missing ,I Actually wrote the program for cropping of the video frames in rectangle bounding boxes, it is throwing these error.how can i resolve this error?
It's hard to tell your specific problem, but here's a couple suggestions. If you compile the cuda mex in Visual Studio instead ...
6年以上 前 | 0
回答済み
Continuously overwriting plot in a loop
Since dist is the same for each loop iteration, and you are only updating model, you should return a handle to the line object b...
Continuously overwriting plot in a loop
Since dist is the same for each loop iteration, and you are only updating model, you should return a handle to the line object b...
7年弱 前 | 0
| 採用済み
回答済み
Regression tree and AIC
The default optimizer is Bayesian, could you extract the BIC & rescale it to AIC?
Regression tree and AIC
The default optimizer is Bayesian, could you extract the BIC & rescale it to AIC?
7年弱 前 | 0
質問
Is it Possible to Assign Aligned Memory to a *mxArray?
I am trying to use an Intel Intrinsics routine in a mex function (the sandbox function call shown here is just a matrix transpos...
7年弱 前 | 1 件の回答 | 0
1
回答質問
MATLAB Crashes when Using Conda Environment Other than Base
I am having trouble using a custom conda environment in MATLAB. Here's the code I use to bootstrap a conda environment with a fe...
7年弱 前 | 3 件の回答 | 4
3
回答回答済み
[DISCONTINUED] MATLAB Answers Wish-list #4 (and bug reports)
I'd like to see python-like support for Git/GitHub requirements.txt files. Python (pip) automatically clones additional repo...
[DISCONTINUED] MATLAB Answers Wish-list #4 (and bug reports)
I'd like to see python-like support for Git/GitHub requirements.txt files. Python (pip) automatically clones additional repo...
7年以上 前 | 1
質問
OOP/Class Questions: deepcopy & AbortSet
1. What is the correct way to deepcopy an instance of a class/object whose superclass is type `handle`? `copyobj` doesn't seem t...
8年弱 前 | 1 件の回答 | 0
1
回答質問
MATLAB + GIT or GitHub User Survey
Do you: 1. Manually switch directories to edit code that lives in your repository? i.e. cd C:\%USERPROFILE%\Documents\Gi...
8年弱 前 | 0 件の回答 | 0
0
回答回答済み
Recursive Search for All Possible Paths Between 2 Nodes
You should check out the graph class. https://www.mathworks.com/help/matlab/ref/graph.html Most common graph operations are i...
Recursive Search for All Possible Paths Between 2 Nodes
You should check out the graph class. https://www.mathworks.com/help/matlab/ref/graph.html Most common graph operations are i...
8年弱 前 | 0
質問
addlistener Behavior/Syntax
I've got a listener on an axes object that listens for changes to either XLim or YLim and fires a callback based on the new axes...
8年弱 前 | 1 件の回答 | 1
1
回答質問
OOP - Sealed Superclasses
I am trying to create a custom class to overload the MATLAB image object but am getting this error message: Class 'matlab.g...
8年弱 前 | 3 件の回答 | 2
3
回答回答済み
Two knob slider for a GUI or app
I have dabbled with this a couple times myself. As Adam mentioned, you could use a range slider, but what if you want multiple t...
Two knob slider for a GUI or app
I have dabbled with this a couple times myself. As Adam mentioned, you could use a range slider, but what if you want multiple t...
8年弱 前 | 1
回答済み
Odd getrect(FIG) behavior with subplots (r2015b)
Since the desired subplot is not known ahead of time, I ended up using this block of code to first figure out which axes was cli...
Odd getrect(FIG) behavior with subplots (r2015b)
Since the desired subplot is not known ahead of time, I ended up using this block of code to first figure out which axes was cli...
8年弱 前 | 0
| 採用済み
質問
Benchmarks for memmapfile vs fread
Has anyone (The MathWorks?) measured & collected benchmarks for memmapfile versus fread (for various file sizes, binary file str...
約8年 前 | 0 件の回答 | 0
0
回答回答済み
How to extract a PDF from points with a weigh attached to them
I don't know if there's a canned function for this - you could try: 1. Compute weighted mean for each column of X 2. Comp...
How to extract a PDF from points with a weigh attached to them
I don't know if there's a canned function for this - you could try: 1. Compute weighted mean for each column of X 2. Comp...
約8年 前 | 0
質問
Odd getrect(FIG) behavior with subplots (r2015b)
I am noticing an unusual behavior of getrect when passing a figure handle as the argument. e.g. hFig1 = figure(1); hA...
約8年 前 | 2 件の回答 | 0
2
回答回答済み
FFT and Optical Spectra
If you're looking for a simple import and speed isn't a concern you should try: uiimport A speedier load than this can ...
FFT and Optical Spectra
If you're looking for a simple import and speed isn't a concern you should try: uiimport A speedier load than this can ...
約8年 前 | 0
質問
Save Python List to MAT File (R2015b)
I've got a small apparent issue with using the python list datatype in MATLAB. If I save a py.list to a MAT file and then try to...
8年以上 前 | 2 件の回答 | 0
2
回答回答済み
Rotating Subparts of Image
This might work for you: 1. Mask a box around the pacman & extract the pixel values 2. Make the background grey where you pull...
Rotating Subparts of Image
This might work for you: 1. Mask a box around the pacman & extract the pixel values 2. Make the background grey where you pull...
8年以上 前 | 0
質問
MCR Applications with Python Functions
I am having an MCR compatiblity issue with python. When I run my application in native MATLAB (r2015b), I call a python script a...
8年以上 前 | 1 件の回答 | 0
1
回答質問
Full File Path Quotation Marks (Double vs Single)
A small thing that I often work around is changing file path names enclosed in double quotes to single quotes to load them into ...
8年以上 前 | 1 件の回答 | 0
1
回答回答済み
Creating array from 1.e-20 to 1, with steps 1.e-19, 1.e-18..
logspace(-20,0,21)
Creating array from 1.e-20 to 1, with steps 1.e-19, 1.e-18..
logspace(-20,0,21)
9年以上 前 | 4
| 採用済み
回答済み
Can I use Pages and save as an Excel spread sheet to import into matlab?
Check Out help xlsread
Can I use Pages and save as an Excel spread sheet to import into matlab?
Check Out help xlsread
9年以上 前 | 0
| 採用済み
回答済み
Probability plot HELP!!!
To fit a gaussian contour to your 2d data, you could try <http://www.mathworks.com/help/stats/fitgmdist.html fitgmdist>. To p...
Probability plot HELP!!!
To fit a gaussian contour to your 2d data, you could try <http://www.mathworks.com/help/stats/fitgmdist.html fitgmdist>. To p...
9年以上 前 | 0
| 採用済み
回答済み
How to make 'MinPeakDistance' consider first point close to last point in findpeaks ?
If your signal is periodic, you could try to circshift() the signal a couple times (by say, length(signal)/4 or length(signal)/3...
How to make 'MinPeakDistance' consider first point close to last point in findpeaks ?
If your signal is periodic, you could try to circshift() the signal a couple times (by say, length(signal)/4 or length(signal)/3...
9年以上 前 | 0
質問
Find the K most orthogonal vectors in a set of vectors
Hello All, The context of this particular search is a step in tuning a spectral clustering routine a la Ng et al 2002. The pu...
9年以上 前 | 1 件の回答 | 0
1
回答質問
(noob) Matlab Compiler Issue
Hey folks, I am trying to build an m-file (sans GUI) into a standalone application for colleagues to utilize. Unfortunate...
10年以上 前 | 1 件の回答 | 0
1
回答質問
Efficient Means of Emulating a Pointer
Hello All, I am writing a program wherein I am using 2 main structs to pass data to function & subfunctions. Depending on the...
10年以上 前 | 1 件の回答 | 0
1
回答質問
1-D digital filter runtime
Quick question - Is there any computational savings to padding input arrays for the filter function to a power of 2?
11年弱 前 | 1 件の回答 | 0











