where is the assised function in the example of using cycle-GAN denoise?

3 visualizaciones (últimos 30 días)
kobe
kobe el 12 de Jul. de 2022
Respondida: Steven Lord el 18 de En. de 2023
How can i acquire the assied function (@concatenateMiniBatchLD2HDCT) in follwing link? Thanks~

Respuestas (2)

KH TOHIDUL ISLAM
KH TOHIDUL ISLAM el 18 de En. de 2023
function [out1,out2] = concatenateMiniBatchLD2HDCT(im1,im2)
% concatenateMiniBatchLD2HDCT - Concatenates the input minibatch for training
% Copyright 2021 The MathWorks, Inc.
out1 = cat(4,im1{:});
out2 = cat(4,im2{:});
end

Steven Lord
Steven Lord el 18 de En. de 2023
In general, to access helper functions for an example you should open the example in MATLAB (either your desktop installation of MATLAB or MATLAB Online.) If you do, MATLAB will change the current directory to the example's directory which contains the helper function and you can open, run, or view the helper function. You can open the example using the button near the upper-right corner of the page.

Categorías

Más información sobre Sequence and Numeric Feature Data Workflows en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by